diff options
author | zsloan | 2021-10-22 18:36:45 +0000 |
---|---|---|
committer | zsloan | 2021-10-22 18:53:24 +0000 |
commit | cc32cc4f1472ddaf63a5b9428e8a67b8ba139282 (patch) | |
tree | 7e9e55ac6b79bbc93cb6aafdda55531dbd51b536 | |
parent | 29d0abcefb87cab9308522d30e5c2691108d83e9 (diff) | |
download | genenetwork2-cc32cc4f1472ddaf63a5b9428e8a67b8ba139282.tar.gz |
Added proxy and local GN3 URLs in tools.py (which should be set in the settings file)
-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 e28abb48..1219993a 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -266,6 +266,8 @@ 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') +GN_PROXY_URL = get_setting('GN_PROXY_URL') +GN3_LOCAL_URL = get_setting('GN_LOCAL_URL') SERVER_PORT = get_setting_int('SERVER_PORT') SQL_URI = get_setting('SQL_URI') LOG_LEVEL = get_setting('LOG_LEVEL') |