Testing production local settings

This commit is contained in:
Felipe Martín 2013-05-22 17:11:02 +02:00
parent 133fb6aadb
commit 4152b00958
1 changed files with 8 additions and 0 deletions

View File

@ -2,3 +2,11 @@ LOCAL_SETTINGS = True
from settings import *
DEBUG = False
TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'dev_ddbb.sqlite',
}
}