diff options
author | zsloan | 2020-04-24 16:06:36 -0500 |
---|---|---|
committer | zsloan | 2020-04-24 16:06:36 -0500 |
commit | be09d207ee4e2705e358102f8bdbcd1da7f70ca2 (patch) | |
tree | b25f8fa1af57be93ef3698e76c0cfd0129346108 /wqflask/utility | |
parent | 2a119affad1830d5a693860279ca2aa2897d84ef (diff) | |
download | genenetwork2-be09d207ee4e2705e358102f8bdbcd1da7f70ca2.tar.gz |
Replaced hard-coded instances of GN2 urls with ones pulled from settings file
Diffstat (limited to 'wqflask/utility')
-rw-r--r-- | wqflask/utility/tools.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index 0fbedccb..9354ece6 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -234,6 +234,8 @@ def show_settings(): GN_VERSION = get_setting('GN_VERSION') HOME = get_setting('HOME') WEBSERVER_MODE = get_setting('WEBSERVER_MODE') +GN2_BASE_URL = get_setting('GN2_BASE_URL') +GN2_BRANCH_URL = get_setting('GN2_BRANCH_URL') GN_SERVER_URL = get_setting('GN_SERVER_URL') SERVER_PORT = get_setting_int('SERVER_PORT') SQL_URI = get_setting('SQL_URI') |