Some Go language blank application.
go generate ./...
or
make gen
go test ./...
or
make test
docker-compose up -d someconteiner
docker-compose up --build app
or
# Start all containers.
make up
# Start some containers.
make up-some
# Start APP container.
make up-app
# Stop containers.
make down
APP_DB_HOST=127.0.0.1
APP_DB_PORT=5432
APP_DB_NAME=database
APP_DB_USER=$DB_USER
APP_DB_PASSWORD=$DB_PASSWORD
APP_HOST=
APP_PORT=80
APP_PATH=/
go run ./cmd/app/*
or
# Launch application.
make run
# Show help.
make help