We're building a backend for team health checks in golang!
Copy [config.sample.yaml] to config.yaml
and adjust options accordingly.
cp config.sample.yaml config.yaml
Run this command in the project root
go run ./main.go
Build the Docker image (optionally set TAG, defaults to latest)
TAG=my-tag make server-build
Run the Docker container (optionally set TAG, defaults to latest)
TAG=my-tag make server-run
You can run a local PostgreSQL server with these make targets:
make db-run
make db-stop