cookiecutter-django/{{cookiecutter.project_slug}}/Procfile

5 lines
253 B
Plaintext
Raw Normal View History

web: gunicorn config.wsgi:application
2015-12-12 10:10:08 +03:00
{% if cookiecutter.use_celery == "y" -%}
worker: {% if cookiecutter.use_newrelic == "y" %}newrelic-admin run-program {% endif %}celery worker --app={{cookiecutter.project_slug}}.taskapp --loglevel=info
2015-12-12 10:10:08 +03:00
{%- endif %}