Skip to content

Commit

Permalink
dev(makefile): fix back run
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuildy committed Nov 7, 2022
1 parent 93845ea commit 6b3d06b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@ gui/back/build:

gui/back/run:
cd back && \
nest start --watch
GUI_PUBLIC_DIR=../front/build \
GUI_CONFIG_FILE=./config.yaml \
./node_modules/.bin/nest start --watch

gui/front/build:
cd front && \
npm run build

gui/front/run:
cd front && \
npm start --watch

gui/packages/docker/build:
docker-compose build app

Expand All @@ -21,3 +27,6 @@ gui/build: gui/back/build gui/front/build gui/packages/docker/build

gui/build_and_run: gui/build
docker-compose up app

gui/dev/compose/up:
docker-compose up -d minio

0 comments on commit 6b3d06b

Please sign in to comment.