initial project layout

This commit is contained in:
Jonas Obrist 2012-08-18 02:24:05 +02:00
parent 64b23881de
commit 82c77fc031
7 changed files with 158 additions and 1 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
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