Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iric-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
bioinfo_iric
iric-data
Commits
98b9a6c7
Commit
98b9a6c7
authored
5 years ago
by
Jean-Philippe Laverdure
Browse files
Options
Downloads
Plain Diff
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
!50
Add possibility to change PostgreSQL port
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.env.example
+1
-0
1 addition, 0 deletions
.env.example
iric_data/settings.py
+1
-1
1 addition, 1 deletion
iric_data/settings.py
with
2 additions
and
1 deletion
.env.example
+
1
−
0
View file @
98b9a6c7
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
iric_data/settings.py
+
1
−
1
View file @
98b9a6c7
...
...
@@ -99,7 +99,7 @@ DATABASES = {
'
USER
'
:
config
(
'
DB_USER
'
),
'
PASSWORD
'
:
config
(
'
DB_PASSWORD
'
),
'
HOST
'
:
config
(
'
DB_HOST
'
),
'
PORT
'
:
'
5432
'
,
'
PORT
'
:
config
(
'
DB_PORT
'
)
,
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment