diff --git a/Makefile b/Makefile index a5955bc..f02ca53 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ help: - @echo "make [clean dev-front prod dev-back]" + @echo "make [clean dev-front prod dev-back stop]" +stop: + docker compose down clean: - @docker compose down - @rm .env - @rm front/MyINPulse-front/.env - @rm docker-compose.yaml - + @rm -f .env + @rm -f front/MyINPulse-front/.env + @rm -f docker-compose.yaml # Install npm packages front/MyINPulse-front/.installed: @@ -37,4 +37,5 @@ dev-back: @cp config/backdev.main.env .env @cp config/backdev.docker-compose.yaml docker-compose.yaml @docker compose up -d + @echo "cd MyINPulse-back" @echo "./gradlew bootRun" \ No newline at end of file