Psql password

master
Nick Sergeant 2012-07-24 03:03:34 +00:00
parent d98d1cb641
commit d30ecc8909
1 changed files with 5 additions and 2 deletions

View File

@ -18,14 +18,17 @@ INTERNAL_IPS = ('127.0.0.1',)
if DEBUG: if DEBUG:
DB_USER = 'Nick' DB_USER = 'Nick'
DB_PASSWORD = ''
else: else:
DB_USER = 'nick' DB_USER = 'snipt'
DB_PASSWORD = 'zmDLn0nTi3No8lUiADb4BNFA'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', 'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'snipt', 'NAME': 'snipt',
'USER': DB_USER, 'USER': DB_USER,
'PASSWORD': '', 'PASSWORD': DB_PASSWORD,
'HOST': 'localhost', 'HOST': 'localhost',
'PORT': '', 'PORT': '',
} }