mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-13 13:17:00 +03:00
0aca0a8782
on Heroku
11 lines
429 B
Plaintext
11 lines
429 B
Plaintext
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" -%}
|
|
worker: REMAP_SIGTERM=SIGQUIT celery worker --app=config.celery_app --loglevel=info
|
|
beat: REMAP_SIGTERM=SIGQUIT celery beat --app=config.celery_app --loglevel=info
|
|
{%- endif %}
|