aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorTeddy Wing2014-04-20 12:23:40 -0400
committerTeddy Wing2014-04-20 12:23:40 -0400
commit54f49e431e7b4125e2d80f5fc800b08cb217ba64 (patch)
tree848b6a0fbe1e0e22f08c755088a272460664e209 /examples
parentccc9d18dc79084bdb46768f56e2c3c82f13770e9 (diff)
downloaddjango-sneak-peek-54f49e431e7b4125e2d80f5fc800b08cb217ba64.tar.bz2
Add database settings to example project
Diffstat (limited to 'examples')
-rw-r--r--examples/djangoproject/djangoproject/settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/djangoproject/djangoproject/settings.py b/examples/djangoproject/djangoproject/settings.py
index acd56b1..0361033 100644
--- a/examples/djangoproject/djangoproject/settings.py
+++ b/examples/djangoproject/djangoproject/settings.py
@@ -8,8 +8,8 @@ TEMPLATE_DEBUG = DEBUG
DATABASES = {
'default': {
- 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
- 'NAME': '', # Or path to database file if using sqlite3.
+ 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
+ 'NAME': 'development.sqlite3', # 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.