diff --git a/Poppins/local_settings_tst.py b/Poppins/local_settings_tst.py index 087ac58e1b2f904426415222eb1c703f07f8d162..42d3f1efd289847a1cbe649dff4382f063b62904 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'