repository
0.0.0-20231222110507-e5808e33764e
Repository: https://github.com/lucassouzavieira/go-base.git
Documentation: pkg.go.dev
# README
Standard Go Project Layout
Overview
This is a basic layout for Go application projects. It's based on https://github.com/golang-standards/project-layout recommendations.
Make commands
-
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