11 lines
202 B
Makefile
11 lines
202 B
Makefile
![]() |
MANAGEPY=foreman run env/bin/python manage.py
|
||
|
|
||
|
update:
|
||
|
virtualenv env
|
||
|
env/bin/pip install -r requirements.txt
|
||
|
$(MANAGEPY) syncdb
|
||
|
$(MANAGEPY) migrate
|
||
|
|
||
|
run: update
|
||
|
$(MANAGEPY) runserver 0.0.0.0:8000
|