Merge pull request #318 from reduxionist/add-postgresql-user-password

Uncomment the DATABASES dict in settings/local.py.example, and add a...
remotes/origin/enhancement/email-actions
Alejandro 2015-04-30 07:41:51 +02:00
commit 33a49cecff
1 changed files with 11 additions and 11 deletions

View File

@ -16,17 +16,17 @@
from .development import *
#DATABASES = {
# 'default': {
# 'ENGINE': 'transaction_hooks.backends.postgresql_psycopg2',
# 'NAME': 'taiga',
# 'USER': 'taiga',
# 'PASSWORD': '',
# 'HOST': '',
# 'PORT': '',
# }
#}
#
DATABASES = {
'default': {
'ENGINE': 'transaction_hooks.backends.postgresql_psycopg2',
'NAME': 'taiga',
'USER': 'taiga',
'PASSWORD': 'changeme',
'HOST': '',
'PORT': '',
}
}
#HOST="http://taiga.projects.kaleidos.net"
#
#MEDIA_ROOT = '/home/taiga/media'