From d59f76cc920c4bf06aea6f7ba2ab6d1942da6094 Mon Sep 17 00:00:00 2001 From: PekopT Date: Wed, 17 Aug 2016 19:02:28 +0300 Subject: [PATCH] prod config file --- archilance/settings/prod.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/archilance/settings/prod.py b/archilance/settings/prod.py index 42e5eac..f80dd39 100644 --- a/archilance/settings/prod.py +++ b/archilance/settings/prod.py @@ -1,3 +1,18 @@ from .base import * -DEBUG = False + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'archilance', + 'USER': 'postgres', + 'PASSWORD': 'vfhbyrf', + 'HOST': 'localhost', + 'PORT': '', + } +} + + +DEBUG = True +TEMPLATE_DEBUG = True +SECRET_KEY = 'vb6@b9zj7^f!^+x*e8=e!oundyu1!e*&0i(3gu2xwo4%fx4h&n' \ No newline at end of file