Files
tp/Makefile
T
2025-02-07 01:01:46 +05:00

16 lines
166 B
Makefile

build:
@docker compose build
run:
@docker compose up
clean:
@docker builder prune
test:
@go test ./api/src/auth/... -v
tc:
@go test -cover
.DEFAULT_GOAL=run