Skip to content

Commit

Permalink
fix: clena up example redis URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Antti Viitala committed Dec 18, 2023
1 parent 7baf065 commit bbedc5c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions railway_django_stack/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,8 @@
}
}

# "redis://default:[email protected]:34680"
REDIS_URL = f"redis://{config('REDISUSER', default='default')}:{config('REDISPASSWORD', default='')}@{config('REDISHOST', default='redis')}:{config('REDISPORT', default=6379)}"


# CELERY CONFIG
CELERY_BROKER_URL = REDIS_URL
CELERY_RESULT_BACKEND = config("CELERY_RESULT_BACKEND", default="django-db")
Expand Down

0 comments on commit bbedc5c

Please sign in to comment.