cookiecutter-django/{{cookiecutter.project_slug}}/.envs/.local/.django

18 lines
510 B
Plaintext
Raw Normal View History

# General
# ------------------------------------------------------------------------------
USE_DOCKER=yes
2018-10-24 13:37:15 +03:00
IPYTHONDIR=/app/.ipython
2018-04-04 13:42:01 +03:00
{%- if cookiecutter.use_celery == 'y' %}
2018-04-04 13:42:01 +03:00
# Redis
# ------------------------------------------------------------------------------
2018-04-04 13:42:01 +03:00
REDIS_URL=redis://redis:6379/0
# Celery
# ------------------------------------------------------------------------------
# Flower
CELERY_FLOWER_USER=!!!SET CELERY_FLOWER_USER!!!
CELERY_FLOWER_PASSWORD=!!!SET CELERY_FLOWER_PASSWORD!!!
{% endif %}