Redis config in local is now conditional on Celery.

This commit is contained in:
Demetris Stavrou 2018-06-21 23:11:08 +03:00
parent 36529326d3
commit 867e2ad629

View File

@ -2,6 +2,8 @@
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
USE_DOCKER=yes USE_DOCKER=yes
{%- if cookiecutter.use_celery == 'y' %}
# Redis # Redis
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
REDIS_URL=redis://redis:6379/0 REDIS_URL=redis://redis:6379/0
{% endif %}