dynamicweb: added settings module with different files for each env

Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
rascencio 2015-11-02 14:44:18 -06:00
commit aec2cd4298
5 changed files with 448 additions and 1 deletions

View file

@ -0,0 +1,19 @@
from .base import *
ALLOWED_HOSTS = [
"*"
]
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'app.db',
}
}
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
'LOCATION': 'unique-snowflake'
}
}