2019-03-11 21:05:31 +00:00
|
|
|
release: python manage.py migrate
|
2020-04-13 14:57:42 +00:00
|
|
|
{% if cookiecutter.use_async == "y" -%}
|
|
|
|
|
web: gunicorn config.asgi:application -k uvicorn.workers.UvicornWorker
|
|
|
|
|
{%- else %}
|
2015-04-24 12:12:34 +00:00
|
|
|
web: gunicorn config.wsgi:application
|
2020-04-13 14:57:42 +00:00
|
|
|
{%- endif %}
|
2015-12-12 07:10:08 +00:00
|
|
|
{% if cookiecutter.use_celery == "y" -%}
|
2019-04-02 14:26:55 +00:00
|
|
|
worker: celery worker --app=config.celery_app --loglevel=info
|
2020-03-03 18:56:18 +00:00
|
|
|
beat: celery beat --app=config.celery_app --loglevel=info
|
2015-12-12 07:10:08 +00:00
|
|
|
{%- endif %}
|