Skip to content

Commit

Permalink
make prod commmand
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakob-SA committed Nov 25, 2024
1 parent 45930e3 commit 72751aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: dev frontend
.PHONY: dev frontend prod

dev:
export $(grep -v '^#' .env.dev | xargs)
Expand All @@ -8,3 +8,7 @@ frontend:
export $(grep -v '^#' .env.dev | xargs)
docker-compose --env-file .env.dev -f docker-compose.yml up --build -d
cd Frontend && npm run dev

prod:
export $(grep -v '^#' .env.prod | xargs)
docker-compose --env-file .env.prod -f docker-compose.prod.yml up --build -d

0 comments on commit 72751aa

Please sign in to comment.