Files
tp/Makefile
T

23 lines
274 B
Makefile

build:
@docker compose build
buildC:
@docker compose build --no-cache
run:
@docker compose --profile dev up -d --remove-orphans
stop:
@docker compose down
clean:
@docker builder prune
test:
@go test ./api/src/auth/... -v
tc:
@go test -cover
.DEFAULT_GOAL=run