Skip to content
Snippets Groups Projects
Commit 4b7847ed authored by Matias Barros's avatar Matias Barros
Browse files

Update local_settings_tst.py

parent a7c4f2c9
No related branches found
No related tags found
No related merge requests found
......@@ -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'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment