Files
tp/Makefile
T
valitovgaziz 44da0ee296 modified: Makefile
modified:   docker-compose.yaml
change profile to prod, add to kk_db kk profile
2025-07-14 15:49:44 +05:00

17 lines
247 B
Makefile

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