Private
Public Access
1
0

power zones

This commit is contained in:
Sander Roosendaal
2016-11-09 00:00:13 +01:00
parent 48044108b2
commit cde106bb19
6 changed files with 62 additions and 11 deletions

View File

@@ -30,6 +30,15 @@ DATABASES = {
# }
}
BROKER_URL = 'redis://localhost:6379/0'
CELERY_RESULT_BACKEND = 'redis://localhost:6379/0'
CELERY_IGNORE_RESULT = False
CELERY_ACCEPT_CONTENT = ['json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TRACK_STARTED = True
CELERY_SEND_TASK_SENT_EVENT = True
# SECURITY WARNING: don't run with debug turned on in production!