Ingen beskrivning

Christopher Crone 44712ab3c4 Move CLI UX docs into folder 5 år sedan
.github 35c5073cc0 First e2e tests running locally (with example backend) 5 år sedan
azure 14fb12c8c8 Let `make protos` affect host files 5 år sedan
backend 14fb12c8c8 Let `make protos` affect host files 5 år sedan
cli 2d14bfeb38 Merge pull request #85 from ulyssessouza/add-run-output 5 år sedan
client 73529cc264 Refactor example/backend 5 år sedan
compose 14fb12c8c8 Let `make protos` affect host files 5 år sedan
containers 14fb12c8c8 Let `make protos` affect host files 5 år sedan
context 3c43606a20 Add remove function to context store 5 år sedan
docs 44712ab3c4 Move CLI UX docs into folder 5 år sedan
errdefs b55f4b0547 Add common error definitions 5 år sedan
example 40fa78ac5d Add rm command 5 år sedan
moby df48f4eb20 Implement `Delete` for moby 5 år sedan
server 40fa78ac5d Add rm command 5 år sedan
tests 323601865d Test output of `docker run` 5 år sedan
.dockerignore cbfcd5cf64 Add dockerignore 5 år sedan
.gitignore fcc7582826 Remove non-project path 5 år sedan
.golangci.yml 9a2ec752b5 Add ACI compose basic e2e test 5 år sedan
Dockerfile 4e9a4185af Add `make lint` and run it on CI 5 år sedan
Makefile 14fb12c8c8 Let `make protos` affect host files 5 år sedan
README.md 688e7e5deb Implement quiet flag for ps command 5 år sedan
builder.Makefile 4e9a4185af Add `make lint` and run it on CI 5 år sedan
go.mod 4e7645aae2 Merge pull request #42 from rumpl/moby 5 år sedan
go.sum 4e7645aae2 Merge pull request #42 from rumpl/moby 5 år sedan
setup-dev.sh 5cbfa2778e Use github action to install protoc 5 år sedan

README.md

Docker API

Actions Status

Dev Setup

The recommended way is to use the main Makefile that runs everything inside a container.

If you don't have or want to use Docker for building you need to make sure you have all the needed tools installed locally:

And then you can call the same make targets but you need to pass it the builder.Makefile (make -f builder.Makefile).

Building the project

$ make

If you make changes to the .proto files, make sure to make protos to generate go code.

Tests

To run unit tests:

make test

If you need to update a golden file simply do go test ./... -test.update-golden.