Files
tp/Makefile
T
valitovgaziz 9da6db076b hash test
2024-08-15 08:25:49 +05:00

16 lines
172 B
Makefile

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