Procfile changes:

1. Renamed Honchofile -> Procfile.heroku and changed it to work better with Heroku.
2. Added Procfile.dev for development.
This commit is contained in:
Arik Fraimovich 2014-02-13 20:16:36 +02:00
parent dc0cc3af65
commit 4ba3152a99
3 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
web: honcho start -f Honchofile -p $PORT
web: honcho start -f Procfile.heroku -p $PORT

2
Procfile.heroku Normal file
View File

@ -0,0 +1,2 @@
web: ./manage.py runserver -p $PORT --host 0.0.0.0 -d -r
worker: ./manage.py runworkers