master
Nick Sergeant 2012-02-14 21:09:39 -05:00
parent 26689daa85
commit a74bc2d7c1
1 changed files with 4 additions and 4 deletions

View File

@ -18,11 +18,11 @@ INTERNAL_IPS = ('127.0.0.1',)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': '/Users/Nick/Code/snipt/db.db',
'USER': '',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'snipt',
'USER': 'Nick',
'PASSWORD': '',
'HOST': '',
'HOST': 'localhost',
'PORT': '',
}
}