mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
11 lines
420 B
Plaintext
11 lines
420 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 -A config.celery_app worker --loglevel=info
|
|
beat: REMAP_SIGTERM=SIGQUIT celery -A config.celery_app beat --loglevel=info
|
|
{%- endif %}
|