From 32d7ad7daddcaad21d0a6f3452b9cf595decfb82 Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Sun, 20 Jul 2025 09:04:32 +0500 Subject: [PATCH] modified: Makefile remove profiles and test commands from Makefile --- Makefile | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 960f134..8902af7 100644 --- a/Makefile +++ b/Makefile @@ -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