https://github.com/ketch-com/ketch-cli
Ketch command line interface
https://github.com/ketch-com/ketch-cli
go tool
Last synced: about 1 year ago
JSON representation
Ketch command line interface
- Host: GitHub
- URL: https://github.com/ketch-com/ketch-cli
- Owner: ketch-com
- License: apache-2.0
- Created: 2020-12-17T19:16:27.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T22:53:00.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T03:53:09.010Z (over 1 year ago)
- Topics: go, tool
- Language: Go
- Homepage:
- Size: 20.2 MB
- Stars: 3
- Watchers: 15
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ketch-cli
The Ketch Command-Line Interface.
## Get the code
```shell
$ git clone https://github.com/ketch-com/ketch-cli
$ cd ketch-cli/
```
## Getting the development dependencies
```shell
go get -u ./...
```
## Building
You can build this project using Go:
```shell
go build ./...
```
You can also produce Linux binaries suitable for Docker Compose using the following:
```shell
./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:
```shell
rm go.sum
go get -u -t ./...
```