The feast command-line tool, feast, is used to register resources to
feast, as well as manage and run ingestion jobs.
The quickest way to get the CLI is to download the compiled binary: #TODO
The following dependencies are required to build the CLI from source:
See below for specific instructions on how to install the dependencies.
After the dependencies are installed, you can build the CLI using:
# at feast top-level directory
$ make build-cliTo ensure you have a matching version of protoc-gen-go, install the vendored version:
$ go install ./vendor/github.com/golang/protobuf/protoc-gen-go
$ which protoc-gen-go
~/go/bin/protoc-gen-goOn MacOS you can install or upgrade to the latest released version with Homebrew:
$ brew install dep
$ brew upgrade depOn other platforms you can use the install.sh script:
$ curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh