diff --git a/config/production/local_settings.py b/config/production/local_settings.py index 6fdab84..23ed9b2 100644 --- a/config/production/local_settings.py +++ b/config/production/local_settings.py @@ -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', + } +}