# mockgen
go get -u github.com/golang/mock/mockgen
# swaggo
go get -u github.com/swaggo/swag/cmd/swag
# auto watch file change and hot reload server
go get -u github.com/silenceper/gowatch
# generate orm struct go code from connect to mysql
go get -u github.com/Shelnutt2/db2struct/cmd/db2struct
# setup git hooks and it will auto run go generate ./... && go test ./... on git commit
git config core.hooksPath githooks
Commands
# generate go code from *.proto and mock code for testing
go generate ./...
# run testing
go test ./...
# run server, config in gowatch.yml
gowatch
# generate orm struct from mysql
db2struct --host=localhost --mysql_port=3306 --user=root --password=root1234 --gorm -d sample -t users
# build docker images
docker build -f build/dockerfile/Dockerfile .
How to run manually
Needs all environment variables below
Environment Variables
Server
export DEBUG=true # enable all verborse logexport SWAGGER_BASE_URL=http://localhost:8080 # api base url on swagger ui