diff options
author | Muriithi Frederick Muriuki | 2018-01-10 15:05:03 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-01-10 15:05:03 +0300 |
commit | a9c9de15c395b1e49244c6063c9c1cb204e450da (patch) | |
tree | 146ab2310c91c6fc535808e6e3e0de1a41cb40a4 /wqflask/utility | |
parent | 56065c9f994c9247eaa17e5216d44d0e5e733aa2 (diff) | |
download | genenetwork2-a9c9de15c395b1e49244c6063c9c1cb204e450da.tar.gz |
Add configuration variables for external services
* Add configuration variables for GitHub and ORCID which will be used by
the system to allow users to login.
Diffstat (limited to 'wqflask/utility')
-rw-r--r-- | wqflask/utility/tools.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index 57f97a81..d2e689a4 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -251,6 +251,10 @@ assert_dir(JS_GUIX_PATH) JS_GN_PATH = get_setting('JS_GN_PATH') # assert_dir(JS_GN_PATH) +GITHUB_AUTH_URL = get_setting('GITHUB_AUTH_URL') +ORCID_AUTH_URL = get_setting('ORCID_AUTH_URL') +ORCID_TOKEN_URL = get_setting('ORCID_TOKEN_URL') + PYLMM_COMMAND = app_set("PYLMM_COMMAND",pylmm_command()) GEMMA_COMMAND = app_set("GEMMA_COMMAND",gemma_command()) PLINK_COMMAND = app_set("PLINK_COMMAND",plink_command()) |