mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 12:17:37 +03:00
18 lines
510 B
Plaintext
18 lines
510 B
Plaintext
# General
|
|
# ------------------------------------------------------------------------------
|
|
USE_DOCKER=yes
|
|
IPYTHONDIR=/app/.ipython
|
|
|
|
{%- if cookiecutter.use_celery == 'y' %}
|
|
# Redis
|
|
# ------------------------------------------------------------------------------
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# Celery
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Flower
|
|
CELERY_FLOWER_USER=!!!SET CELERY_FLOWER_USER!!!
|
|
CELERY_FLOWER_PASSWORD=!!!SET CELERY_FLOWER_PASSWORD!!!
|
|
{% endif %}
|