Further refinements to Heroku Support.

This commit is contained in:
2013-04-01 01:02:53 +01:00
parent 7e2ce6fb1a
commit 37eb0588b9
4 changed files with 10 additions and 4 deletions

View File

@@ -1 +1,5 @@
web: python manage.py run_gunicorn
web: cd app; python manage.py collectstatic --noinput; python manage.py run_gunicorn
debug: cd app; python manage.py collectstatic --noinput; DJANGO_DEBUG=1 python manage.py run_gunicorn
update_haystack: cd app; python manage.py update_index
reindex_haystack: cd app; python manage.py rebuild_index --noinput
syncdb: cd app; python manage.py syncdb --migrate --noinput