Skip to content
Snippets Groups Projects
Commit 98b9a6c7 authored by Jean-Philippe Laverdure's avatar Jean-Philippe Laverdure
Browse files

Merge branch 'custom_postgre_port' into 'master'

Add possibility to change PostgreSQL port

See merge request !50
parents 1fda1973 c1b3ea1f
No related branches found
No related tags found
1 merge request!50Add possibility to change PostgreSQL port
......@@ -9,6 +9,7 @@ DB_NAME=iric_data_dev
DB_USER=iric_data_user
DB_PASSWORD=
DB_HOST=127.0.0.1
DB_PORT=5432
AUTH_LDAP_SERVER_URI=ldap://sim.umontreal.ca
AUTH_LDAP_BIND_DN=iric-bioinfo@sim.umontreal.ca
AUTH_LDAP_BIND_PASSWORD=647By2vC
......
......@@ -99,7 +99,7 @@ DATABASES = {
'USER': config('DB_USER'),
'PASSWORD': config('DB_PASSWORD'),
'HOST': config('DB_HOST'),
'PORT': '5432',
'PORT': config('DB_PORT'),
}
}
......
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