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

11 lines
420 B
Plaintext
Raw Normal View History

release: python manage.py migrate
{% if cookiecutter.use_async == "y" -%}
web: gunicorn config.asgi:application -k uvicorn.workers.UvicornWorker
{%- else %}
web: gunicorn config.wsgi:application
{%- endif %}
{% if cookiecutter.use_celery == "y" -%}
2021-09-03 21:17:23 +03:00
worker: REMAP_SIGTERM=SIGQUIT celery -A config.celery_app worker --loglevel=info
beat: REMAP_SIGTERM=SIGQUIT celery -A config.celery_app beat --loglevel=info
2015-12-12 10:10:08 +03:00
{%- endif %}