From 7e960881ae6cbcd709538dcd73e4fd89e33507d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Zapke-Gru=CC=88ndemann?= Date: Wed, 4 Jan 2012 23:58:44 +0100 Subject: Added model, admin, tests and tasks for calendarium. --- sublab_project/settings.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'sublab_project/settings.py') 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: -- cgit v1.2.1