summaryrefslogtreecommitdiff
path: root/sublab_project/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'sublab_project/settings.py')
-rw-r--r--sublab_project/settings.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/sublab_project/settings.py b/sublab_project/settings.py
index d35e5c7..e52008a 100644
--- a/sublab_project/settings.py
+++ b/sublab_project/settings.py
@@ -133,6 +133,8 @@ INSTALLED_APPS = (
'gunicorn',
'news',
'projects',
+ 'djcelery',
+ 'calendarium',
)
# A sample logging configuration. The only tangible logging
@@ -189,6 +191,13 @@ AUTHENTICATION_BACKENDS = (
'django.contrib.auth.backends.ModelBackend',
)
+import djcelery
+djcelery.setup_loader()
+
+BROKER_URL = 'redis://localhost:6379/0'
+
+CALENDARIUM_IMPORT_URL = 'https://sublab.org:5232/calendars/events'
+
try:
from local_settings import *
except ImportError: