From ad73da1c8beddbf53cb38a01a8ffffe157435571 Mon Sep 17 00:00:00 2001 From: Jake Dahn Date: Thu, 15 Sep 2011 22:28:53 -0700 Subject: [PATCH] adding other packages to local installed_apps --- files/dash_settings.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/files/dash_settings.py b/files/dash_settings.py index 20442e5..5f54f3d 100644 --- a/files/dash_settings.py +++ b/files/dash_settings.py @@ -15,11 +15,20 @@ DATABASES = { CACHE_BACKEND = 'dummy://' -# Add nixon to dash installation. +# Add nixon + other apps to dash installation. INSTALLED_APPS = ( -'dashboard.nixon', + 'dashboard', + 'dashboard.nixon', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'django_openstack', + 'django_openstack.templatetags', + 'mailer', ) + # Send email to the console by default EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' # Or send them to /dev/null