Uncomment the DATABASES dict in settings/local.py.example, and add a default PASSWORD value to it, in order to account for the addition of Postgresql authorization instructions to the setup-development docs (see https://github.com/taigaio/taiga-doc/issues/52)

remotes/origin/enhancement/email-actions
Jonathan Barratt 2015-04-29 20:29:39 +07:00
parent eaaee62f8c
commit 731d4f51c7
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'