diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-09-08 16:59:29 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-09-08 11:10:28 -0500 |
commit | 01a64613eea1ccf5bdb1c7c9b563c9c9597bab74 (patch) | |
tree | a7bd808215630082dfa816bc4445180c9f6f85fb | |
parent | 585b53a52a441761690ef81cd293597f38fa8a2f (diff) |
local_settings.py: Add sqlite example
Sqlite should be sufficient for testing so make it the default.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | local_settings.py.example | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/local_settings.py.example b/local_settings.py.example index b8407d3e..df141521 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', }, } |