build:
	@docker compose --profile prod build --no-cache

run: stop 
	@docker compose --profile prod up -d --remove-orphans

stop:
	@docker compose --profile prod down

test:
	@go test ./api/src/auth/... -v

tc:
	@go test -cover

.DEFAULT_GOAL=run
