From 01a64613eea1ccf5bdb1c7c9b563c9c9597bab74 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 8 Sep 2012 16:59:29 +0200 Subject: local_settings.py: Add sqlite example Sqlite should be sufficient for testing so make it the default. Signed-off-by: Florian Pritz --- local_settings.py.example | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'local_settings.py.example') 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', }, } -- cgit v1.2.3-24-g4f1b