From b079f7709caa7b451b10eb5c3440ab5de60ca89a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Fri, 10 Jul 2015 13:06:32 +0200 Subject: [PATCH] Minor fixex in local.py.example --- settings/local.py.example | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/settings/local.py.example b/settings/local.py.example index dd4ce8c9..03fa20c6 100644 --- a/settings/local.py.example +++ b/settings/local.py.example @@ -16,6 +16,10 @@ from .development import * +#ADMINS = ( +# ("Admin", "example@example.com"), +#) + DATABASES = { 'default': { 'ENGINE': 'transaction_hooks.backends.postgresql_psycopg2', @@ -27,11 +31,25 @@ DATABASES = { } } -#HOST="http://taiga.projects.kaleidos.net" -# +#SITES = { +# "api": { +# "scheme": "http", +# "domain": "localhost:8000", +# "name": "api" +# }, +# "front": { +# "scheme": "http", +# "domain": "localhost:9001", +# "name": "front" +# }, +#} + +#SITE_ID = "api" + #MEDIA_ROOT = '/home/taiga/media' #STATIC_ROOT = '/home/taiga/static' + # EMAIL SETTINGS EXAMPLE #EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' #EMAIL_USE_TLS = False