feat: added build option in dev command
This commit is contained in:
parent
9840e3ff6d
commit
61c2933d84
1 changed files with 7 additions and 0 deletions
7
Makefile
7
Makefile
|
|
@ -41,7 +41,14 @@ build:
|
|||
|
||||
dev:
|
||||
make install_frontend
|
||||
ifeq ($(build),1)
|
||||
@echo 'Running docker compose up with build'
|
||||
docker compose up --build
|
||||
else
|
||||
@echo 'Running docker compose up without build'
|
||||
docker compose up
|
||||
endif
|
||||
|
||||
|
||||
publish:
|
||||
make build
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue