|
|
před 5 roky | |
|---|---|---|
| .dependabot | před 5 roky | |
| .github | před 5 roky | |
| azure | před 5 roky | |
| backend | před 5 roky | |
| cli | před 5 roky | |
| client | před 5 roky | |
| compose | před 5 roky | |
| config | před 5 roky | |
| containers | před 5 roky | |
| context | před 5 roky | |
| docs | před 5 roky | |
| errdefs | před 5 roky | |
| example | před 5 roky | |
| local | před 5 roky | |
| multierror | před 5 roky | |
| protos | před 5 roky | |
| server | před 5 roky | |
| tests | před 5 roky | |
| .dockerignore | před 5 roky | |
| .gitattributes | před 5 roky | |
| .gitignore | před 5 roky | |
| .golangci.yml | před 5 roky | |
| Dockerfile | před 5 roky | |
| Makefile | před 5 roky | |
| README.md | před 5 roky | |
| builder.Makefile | před 5 roky | |
| go.mod | před 5 roky | |
| go.sum | před 5 roky |
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:
go get github.com/golang/protobuf/[email protected]go get golang.org/x/tools/cmd/goimportsgo get github.com/golangci/golangci-lint/cmd/[email protected]And then you can call the same make targets but you need to pass it the builder.Makefile (make -f builder.Makefile).
The new CLI delegates to the classic docker for default contexts ; delegation is done to docker-classic.
make classic-link will create a docker-classic link in /usr/local/bin if you don't already have it from Docker Desktop$ make
If you make changes to the .proto files, make sure to make protos to generate go code.
To run unit tests:
make test
If you need to update a golden file simply do go test ./... -test.update-golden.