summaryrefslogtreecommitdiffstats
path: root/local_settings.py.example
diff options
context:
space:
mode:
Diffstat (limited to 'local_settings.py.example')
-rw-r--r--local_settings.py.example20
1 files changed, 14 insertions, 6 deletions
diff --git a/local_settings.py.example b/local_settings.py.example
index b8407d3..df14152 100644
--- a/local_settings.py.example
+++ b/local_settings.py.example
@@ -14,14 +14,22 @@ ADMINS = (
)
## PostgreSQL Database settings
+#DATABASES = {
+# 'default': {
+# 'ENGINE' : 'django.db.backends.postgresql_psycopg2',
+# 'NAME' : 'archlinux',
+# 'USER' : 'archlinux',
+# 'PASSWORD': 'archlinux',
+# 'HOST' : '',
+# 'PORT' : '',
+# },
+#}
+
+## Sqlite Database settings
DATABASES = {
'default': {
- 'ENGINE' : 'django.db.backends.postgresql_psycopg2',
- 'NAME' : 'archlinux',
- 'USER' : 'archlinux',
- 'PASSWORD': 'archlinux',
- 'HOST' : '',
- 'PORT' : '',
+ 'ENGINE' : 'django.db.backends.sqlite3',
+ 'NAME' : 'database.db',
},
}