diff options
Diffstat (limited to 'stapp/development.py')
-rw-r--r-- | stapp/development.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/stapp/development.py b/stapp/development.py index b865a6c..562c5b2 100644 --- a/stapp/development.py +++ b/stapp/development.py @@ -3,6 +3,17 @@ from stapp.settings import * DEBUG=True TEMPLATE_DEBUG=DEBUG +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': 'stapp.db', # Or path to database file if using sqlite3. + 'USER': '', # Not used with sqlite3. + 'PASSWORD': '', # Not used with sqlite3. + 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. + 'PORT': '', # Set to empty string for default. Not used with sqlite3. + } +} + MIDDLEWARE_CLASSES += ( 'debug_toolbar.middleware.DebugToolbarMiddleware', ) |