This is a basic layout for Go application projects. It's based on https://github.com/golang-standards/project-layout recommendations.
-
make init
Inits the repository removing undesirable files and update dependencies. -
make build
Builds the application. Executables are put intobuild
directory -
make docker-build
Builds the docker image -
make proto
Generate the protobuf stubs from proto definitions -
make test
Run all project tests