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://'
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in a new issue