2fas-server/Makefile
2022-12-31 10:22:38 +01:00

28 lines
603 B
Makefile

.PHONY: help
USERID=$(shell id -u)
help:
@grep -hE '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
| sort \
| awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
migration: ## create database migrations file
docker-compose run -u ${USERID}:${USERID} --rm api migrate create new_migration sql
migration-up: ## apply all available migrations
docker-compose run -u ${USERID}:${USERID} --rm api migrate up
up: ## run all applications in stack
docker-compose up -d
test: ## run unit tests
go test ./internal/...
tests-e2e: ## run end to end tests
go test ./tests/...