Merge branch 'master' of github.com:levivm/dynamicweb

This commit is contained in:
Levi 2016-08-16 00:41:38 -05:00
commit 4c3b9a5858
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
from .base import *
ALLOWED_HOSTS = [
"*"
]
# DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': 'app.db',
# }
# }
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': 'unique-snowflake'
}
}
MIDDLEWARE_CLASSES+=("debug_toolbar.middleware.DebugToolbarMiddleware",)