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: build:
@docker compose --profile prod build --no-cache @docker compose build --no-cache
run: stop run: stop
@docker compose --profile prod up -d --remove-orphans @docker compose up -d --remove-orphans
stop: stop:
@docker compose --profile prod down @docker compose down
test:
@go test ./api/src/auth/... -v
tc:
@go test -cover
.DEFAULT_GOAL=run .DEFAULT_GOAL=run