remove celery from project

This commit is contained in:
2017-08-04 17:49:33 +02:00
parent 81d9b7f29c
commit 79233c408e
5 changed files with 1 additions and 48 deletions

View File

@@ -138,14 +138,6 @@ LOGOUT_URL = 'logout'
LOGIN_REDIRECT_URL = 'billard:location_index'
LOGOUT_REDIRECT_URL = 'billard:location_index'
# CELERY STUFF
BROKER_URL = 'redis://localhost:6379'
CELERY_RESULT_BACKEND = 'redis://localhost:6379'
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
CELERY_TIMEZONE = 'Europe/Berlin'
# Admin eMails
ADMINS = (
('Robert Einsle', 'robert@einsle.de'),
@@ -162,8 +154,6 @@ URL_LOCATION_PROCESSOR = 'http://127.0.0.1:8000/billard/process_locationdata'
STATIC_ROOT = "/srv/carom/carom-server/static/"
CELERY_PREFIX = 'carom'
try:
from local_settings import *
except ImportError: