https://github.com/mchirico/go_slicestore
Pull Data from Slice Store
https://github.com/mchirico/go_slicestore
data-analysis go ibm
Last synced: over 1 year ago
JSON representation
Pull Data from Slice Store
- Host: GitHub
- URL: https://github.com/mchirico/go_slicestore
- Owner: mchirico
- License: mit
- Created: 2019-03-15T16:01:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-20T22:19:05.000Z (over 6 years ago)
- Last Synced: 2025-01-23T01:42:10.419Z (over 1 year ago)
- Topics: data-analysis, go, ibm
- Language: Go
- Size: 255 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://travis-ci.org/mchirico/go_slicestore)
[](https://codeclimate.com/github/mchirico/go_slicestore/maintainability)
[](https://codecov.io/gh/mchirico/go_slicestore)
# go_slicestore
Pull Data from Slice Store
[IBM API Reference](https://www.ibm.com/support/knowledgecenter/STXNRM_3.14.3/coss.doc/managerapi834a.html#managerapi-gen833)
## Packages Used in Build
```bash
go get -u github.com/mchirico/date/parse
go get gopkg.in/yaml.v2
```
## Build with Vendor
```bash
git clone https://github.com/mchirico/go_slicestore.git
cd go_slicestore
export GO111MODULE=on
go mod init
# Below will put all packages in a vendor folder
go mod vendor
# Note: Fixtures are encrypted, so tests may not run correctly
go test -v -mod=vendor ./...
# Don't forget the "." in "./cmd/getdata" below
go build -v -mod=vendor ./cmd/getdata
# You can now run
./getdata
```
## Usage
Note: You must put your correct credentials in the `~/sliceStore.yaml`
```bash
cat > ~/sliceStore.yaml <