Settings has a default sqlite database

This commit is contained in:
Monitor Machine
2012-03-30 18:22:44 -04:00
parent c121f2b024
commit 0c69e00932

View File

@@ -166,6 +166,15 @@ MAKO_TEMPLATES = {}
LOGGING_ENV = "dev" # override this in different environments
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '../mitx.db',
}
}
SECRET_KEY = 'unsecure'
# Default dev cache (i.e. no caching)
CACHES = {
'default': {