adding other packages to local installed_apps

This commit is contained in:
Jake Dahn 2011-09-15 22:28:53 -07:00
parent feb6582019
commit ad73da1c8b

View file

@ -15,11 +15,20 @@ DATABASES = {
CACHE_BACKEND = 'dummy://' CACHE_BACKEND = 'dummy://'
# Add nixon to dash installation. # Add nixon + other apps to dash installation.
INSTALLED_APPS = ( INSTALLED_APPS = (
'dashboard',
'dashboard.nixon', '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 # Send email to the console by default
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
# Or send them to /dev/null # Or send them to /dev/null