From 731d4f51c75a5895fd82b879b9422d4a7643d9e0 Mon Sep 17 00:00:00 2001 From: Jonathan Barratt Date: Wed, 29 Apr 2015 20:29:39 +0700 Subject: [PATCH] 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) --- settings/local.py.example | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/settings/local.py.example b/settings/local.py.example index 0fb692ff..c98e27da 100644 --- a/settings/local.py.example +++ b/settings/local.py.example @@ -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'