Skip to content
Snippets Groups Projects
Verified Commit fb223194 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Fix run.dev target by adding dev.install

parent 1ca87901
No related branches found
No related tags found
No related merge requests found
Pipeline #3081 passed
...@@ -35,9 +35,12 @@ loaddata: ...@@ -35,9 +35,12 @@ loaddata:
removestaleimages: removestaleimages:
$(POETRY_RUN_MANAGE) removestaleimages $(POETRY_RUN_MANAGE) removestaleimages
run.dev: migrate run.dev: dev.install migrate
$(POETRY_RUN_MANAGE) runserver 0.0.0.0:8000 $(POETRY_RUN_MANAGE) runserver 0.0.0.0:8000
dev.install:
$(POETRY) install --no-root
run.prod: migrate run.prod: migrate
$(POETRY_RUN) gunicorn --bind 0.0.0.0:8000 --workers `nproc` steering.wsgi $(POETRY_RUN) gunicorn --bind 0.0.0.0:8000 --workers `nproc` steering.wsgi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment