rogueojiiofwales/Makefile

14 lines
240 B
Makefile
Raw Normal View History

2012-08-18 02:24:05 +02:00
MANAGEPY=foreman run env/bin/python manage.py
update:
virtualenv env
2012-08-18 03:03:17 +02:00
env/bin/pip install -r localrequirements.txt
2012-08-18 02:24:05 +02:00
$(MANAGEPY) syncdb
$(MANAGEPY) migrate
run: update
$(MANAGEPY) runserver 0.0.0.0:8000
2012-08-18 02:26:00 +02:00
deploy:
git push heroku master