Starting the app locally for development:
make secrets
docker-compose up
# Alternatively:
make docker-dev-run
Run all tests with Make and Docker Compose:
make docker-test
Run tests individually with docker-compose:
docker-compose run --rm backend-test
docker-compose run --rm web-test
sudo -u postgres createuser -s "$USER"
createdb guff_test
Run all tests:
make test
Run tests individually:
# Backend
cd backend; go test ./...
# Web
cd web; npm test