From 4b7847ed6f8a78f9c4e37ca5b3f744f42e64ea1f Mon Sep 17 00:00:00 2001
From: Matias Barros <mbarros@boletinoficial.gob.ar>
Date: Mon, 21 Jan 2019 15:29:03 -0300
Subject: [PATCH] Update local_settings_tst.py

---
 Poppins/local_settings_tst.py | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Poppins/local_settings_tst.py b/Poppins/local_settings_tst.py
index 087ac58..42d3f1e 100644
--- a/Poppins/local_settings_tst.py
+++ b/Poppins/local_settings_tst.py
@@ -4,6 +4,17 @@ DEBUG = False
 APP_ROOT = '/var/www/poppins.bc.local/app/Poppins/'
 STATIC_ROOT = '/var/www/poppins.bc.local/html'
 
+DATABASES = {
+    'default': {
+        'ENGINE': 'django.db.backends.postgresql_psycopg2',
+        'NAME': 'poppins',
+        'USER': 'poppinsuser',
+        'PASSWORD': '1234',
+        'HOST': 'localhost',
+        'PORT': '5432',
+    }
+}
+
 # MAIL DATA
 EMAIL_USE_TLS = False
 EMAIL_HOST = '172.16.1.106'
-- 
GitLab