[backport] 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)
parent
38855a00cb
commit
9c1c582577
|
@ -16,17 +16,17 @@
|
||||||
|
|
||||||
from .development import *
|
from .development import *
|
||||||
|
|
||||||
#DATABASES = {
|
DATABASES = {
|
||||||
# 'default': {
|
'default': {
|
||||||
# 'ENGINE': 'transaction_hooks.backends.postgresql_psycopg2',
|
'ENGINE': 'transaction_hooks.backends.postgresql_psycopg2',
|
||||||
# 'NAME': 'taiga',
|
'NAME': 'taiga',
|
||||||
# 'USER': 'taiga',
|
'USER': 'taiga',
|
||||||
# 'PASSWORD': '',
|
'PASSWORD': 'changeme',
|
||||||
# 'HOST': '',
|
'HOST': '',
|
||||||
# 'PORT': '',
|
'PORT': '',
|
||||||
# }
|
}
|
||||||
#}
|
}
|
||||||
#
|
|
||||||
#HOST="http://taiga.projects.kaleidos.net"
|
#HOST="http://taiga.projects.kaleidos.net"
|
||||||
#
|
#
|
||||||
#MEDIA_ROOT = '/home/taiga/media'
|
#MEDIA_ROOT = '/home/taiga/media'
|
||||||
|
|
Loading…
Reference in New Issue