[extensions-web] settings: Fix local postgres configuration



commit 0c224f1519b683519ae0bc5fc7aadde20e969a91
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Fri Mar 30 19:24:55 2012 -0400

    settings: Fix local postgres configuration

 sweettooth/settings.py |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/sweettooth/settings.py b/sweettooth/settings.py
index cd45ae9..7666919 100644
--- a/sweettooth/settings.py
+++ b/sweettooth/settings.py
@@ -17,10 +17,10 @@ DATABASES = {
     'default': {
         'ENGINE': 'django.db.backends.postgresql_psycopg2',
         'NAME': 'django',
-        'USER': 'test-deploy',                      # Not used with sqlite3.
-        'PASSWORD': 'test-deploy',                  # Not used with sqlite3.
-        'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
-        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
+        'USER': 'test-deploy',
+        'PASSWORD': 'test-deploy',
+        'HOST': 'localhost',
+        'PORT': '5432',
     }
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]