feat: added build option in dev command

This commit is contained in:
Gabriel Almeida 2023-03-20 06:35:29 -03:00
commit 61c2933d84

View file

@ -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