mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
7 lines
246 B
Plaintext
7 lines
246 B
Plaintext
release: python manage.py migrate
|
|
web: gunicorn config.wsgi:application
|
|
{% if cookiecutter.use_celery == "y" -%}
|
|
worker: celery worker --app=config.celery_app --loglevel=info
|
|
beat: celery beat --app=config.celery_app --loglevel=info
|
|
{%- endif %}
|