Skip to content

Commit

Permalink
Merge pull request #114 from gwu-libraries/t113-db-host-env
Browse files Browse the repository at this point in the history
Parameterized db host. Fixes #113
  • Loading branch information
kerchner committed Jan 5, 2016
2 parents 12105d9 + 86a0f6a commit 88a8fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sfm/sfm/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
'NAME': 'sfmdatabase',
'USER': 'postgres',
'PASSWORD': env.get('DB_ENV_POSTGRES_PASSWORD'),
'HOST': 'db',
'HOST': env.get('DB_ENV_HOST', 'db'),
'PORT': '5432',
}
}
Expand Down

0 comments on commit 88a8fcb

Please sign in to comment.