From 9f66c18e71641ca4070770a801af7ec4beb04f8b Mon Sep 17 00:00:00 2001 From: Mathias Petermann Date: Tue, 22 Sep 2020 14:48:40 +0200 Subject: [PATCH] Add REDIS_HOST and REDIS_PORT to celery configuration documentation --- docs/production/index.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/production/index.rst b/docs/production/index.rst index 67e97dae..1fdd5dde 100644 --- a/docs/production/index.rst +++ b/docs/production/index.rst @@ -390,6 +390,9 @@ Here are the Celery configuration variables that should be set:: CELERY_IMPORTS = ('lemur.common.celery') CELERY_TIMEZONE = 'UTC' + REDIS_HOST="your_redis_url" + REDIS_PORT="6379" + Do not forget to import crontab module in your configuration file:: from celery.task.schedules import crontab