Swagger API documentation can be found at /v1/swagger
You need to execute config.sh before any action on this template. This script take one arg that is the project name.
$ ./config.sh my-super-apiAfter that, you can run make init to copy all configuration files, then you can run docker-compose up.
Run tests using the Make recipe test
$ make testTo add verbosity to go test command
$ make test VERBOSE=-vYour commits names should follow the @commitlint/config-conventional rules.
Check and fix your code using:
$ make coding-styleInstall pre-commit following the official documentation
Setup your pre-commit hooks using:
# pre-commit hooks
$ pre-commit install
# message commit hooks
$ pre-commit install --hook-type commit-msgFor additional information check pre-commit docs