2019-03-12 00:05:31 +03:00
|
|
|
release: python manage.py migrate
|
2021-11-29 14:16:05 +03:00
|
|
|
{%- if cookiecutter.use_async == "y" %}
|
2024-06-08 16:56:02 +03:00
|
|
|
web: gunicorn config.asgi:application -k uvicorn_worker.UvicornWorker
|
2021-08-19 15:30:42 +03:00
|
|
|
{%- else %}
|
2015-04-24 15:12:34 +03:00
|
|
|
web: gunicorn config.wsgi:application
|
2020-04-13 17:57:42 +03:00
|
|
|
{%- endif %}
|
2021-11-29 14:16:05 +03:00
|
|
|
{%- 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 %}
|