Skip to content

ketch-com/ketch-cli

Repository files navigation

ketch-cli

The Ketch Command-Line Interface.

Get the code

$ git clone https://github.com/ketch-com/ketch-cli
$ cd ketch-cli/

Getting the development dependencies

go get -u ./...

Building

You can build this project using Go:

go build ./...

You can also produce Linux binaries suitable for Docker Compose using the following:

./scripts/build.sh

Distribution

The docker containers produced by this repository are contained in the docker folder.

Updating dependencies

To update the dependencies, run the following:

rm go.sum
go get -u -t ./...