Merge pull request #442 from stepmr/patch-3

Add celery worker to Procfile
This commit is contained in:
Daniel Roy Greenfeld 2015-12-12 14:20:30 -08:00
commit 40bce156c6

View File

@ -1 +1,4 @@
web: gunicorn config.wsgi:application
{% if cookiecutter.use_celery == "y" -%}
worker: {% if cookiecutter.use_newrelic == "y" %}newrelic-admin run-program {% endif %}celery worker --app=stairmaster.taskapp --loglevel=info
{%- endif %}