adding other packages to local installed_apps
This commit is contained in:
parent
feb6582019
commit
ad73da1c8b
1 changed files with 11 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue