modified: Makefile

remove profiles and test commands from Makefile
This commit is contained in:
2025-07-20 09:04:32 +05:00
parent 34f5bc62bc
commit 32d7ad7dad
+3 -9
View File
@@ -1,16 +1,10 @@
build:
@docker compose --profile prod build --no-cache
@docker compose build --no-cache
run: stop
@docker compose --profile prod up -d --remove-orphans
@docker compose up -d --remove-orphans
stop:
@docker compose --profile prod down
test:
@go test ./api/src/auth/... -v
tc:
@go test -cover
@docker compose down
.DEFAULT_GOAL=run