Moved CELERY_BROKER_URL definition to .django env file to resolve error when Celery is not used (PR #1693)

This commit is contained in:
Demetris Stavrou 2018-06-22 17:32:10 +03:00
parent 867e2ad629
commit 6f638078eb
2 changed files with 7 additions and 3 deletions

View File

@ -43,3 +43,10 @@ DJANGO_SENTRY_DSN=
# Redis
# ------------------------------------------------------------------------------
REDIS_URL=redis://redis:6379/0
{% if cookiecutter.use_celery == "y" %}
# Celery
# ------------------------------------------------------------------------------
CELERY_BROKER_URL=redis://redis:6379/0
{% endif %}

View File

@ -7,9 +7,6 @@ set -o nounset
cmd="$@"
# N.B. If only .env files supported variable expansion...
export CELERY_BROKER_URL="${REDIS_URL}"
if [ -z "${POSTGRES_USER}" ]; then
base_postgres_image_default_user='postgres'
export POSTGRES_USER="${base_postgres_image_default_user}"