https://documenter.getpostman.com/view/17475694/2s93CPrCw6
Install the Go programming language.
Install docker.
Then install Go modules
go mod tidyTo run database migrations. "D:/Projects/go" should be replaced with your local path to the project.
docker run -v D:/Projects/sneaky-spider-api/migrations:/migrations --network host migrate/migrate -path=/migrations/ -database "<your-postgres-address>" upTo clear the database:
docker run -v D:/Projects/sneaky-spider-api/migrations:/migrations --network host migrate/migrate -path=/migrations/ -database "<your-postgres-address>" down -allTo start the API:
make runor
go run main.goTo start the Alerts Service:
go run alerts/cmd/main.gomake testor
go test -v ./...