Merge branch 'master' of github.com:levivm/dynamicweb
This commit is contained in:
commit
4c3b9a5858
1 changed files with 22 additions and 0 deletions
22
dynamicweb/settings/local.py
Normal file
22
dynamicweb/settings/local.py
Normal 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",)
|
Loading…
Reference in a new issue