Browse Source

add instructions to build from sources

main v0.1.6
Nicolas Massé 4 years ago
parent
commit
ea067f23a8
  1. 13
      README.md

13
README.md

@ -63,3 +63,16 @@ function kci () {
podman run --rm -v $HOME/.kci.yaml:/.kci.yaml:z -v $PWD:/home:z -w /home quay.io/itix/kci:latest "$@"
}
```
## Building from sources
To compile the application from sources, you can run the following commands:
```sh
export GOPATH="$HOME/go"
export GOBIN="$GOPATH/bin"
export PATH="$GOBIN:$PATH"
go install github.com/rakyll/statik
go generate ./...
go build -o kci cli/main.go
```

Loading…
Cancel
Save