diff options
author | Johannes Krampf <johannes.krampf@gmail.com> | 2011-12-02 20:11:03 +0100 |
---|---|---|
committer | Johannes Krampf <johannes.krampf@gmail.com> | 2011-12-02 20:11:03 +0100 |
commit | 4b819c267d6973e634e06f599b5d64cec26cfd95 (patch) | |
tree | 9123279015c9dad20e2b4580fac7988bf80070b9 /local_settings.py.example | |
parent | 8ceb83e52897c1c0bccc6322cffb0e864664afd1 (diff) |
Add database settings for PostgreSQL
Diffstat (limited to 'local_settings.py.example')
-rw-r--r-- | local_settings.py.example | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/local_settings.py.example b/local_settings.py.example index 4ad87a36..b5883720 100644 --- a/local_settings.py.example +++ b/local_settings.py.example @@ -27,6 +27,19 @@ DATABASES = { }, } +## PostgreSQL Database settings +#DATABASES = { +# 'default': { +# 'ENGINE' : 'django.db.backends.postgresql_psycopg2', +# 'NAME' : 'parabola', +# 'USER' : 'parabola', +# 'PASSWORD': 'parabola', +# 'HOST' : '', +# 'PORT' : '', +# 'OPTIONS' : {}, +# }, +#} + ## sqlite3 Database settings #DATABASES = { # 'default': { |