What things you need to setup the project:
For start developing you must clone the project:
git clone git@github.com:lab259/go-rscsrv-psql.gitNow, the dependencies must be installed.
go mod download
😉 Finally, you are done to start developing.
In the root directory, start PostgreSQL (using docker-compose):
docker-compose up -dThen execute:
make testTo enable coverage, execute:
make coverageTo generate the HTML coverage report, execute:
make coverage coverage-html