Changed to use postgres 'mayan' database and user.

This commit is contained in:
pwhipp
2014-07-09 07:17:04 +10:00
parent 7508ceaa24
commit 2f423a894a

View File

@@ -122,10 +122,12 @@ WSGI_APPLICATION = 'mayan.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(SITE_ROOT, 'db.sqlite3'),
}
}
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'mayan',
'USER': 'mayan',
'PASSWORD': 'Jeeji4ah',
'HOST': '',
'PORT': ''}}
# Internationalization
# https://docs.djangoproject.com/en/1.6/topics/i18n/