diff options
author | Pjotr Prins | 2020-04-26 13:20:13 -0500 |
---|---|---|
committer | Pjotr Prins | 2020-04-26 13:20:13 -0500 |
commit | c0909b461effecb8051020a4f186a40b8867b574 (patch) | |
tree | 8a910a67072299a48d70ff40e304641f4c1953b4 /etc/default_settings.py | |
parent | cdcfb086de9277a1c1b2d8de57ceb78ae8683f53 (diff) | |
parent | 14d49450c47e8ef3b34bca9e759acd371319a854 (diff) | |
download | genenetwork2-c0909b461effecb8051020a4f186a40b8867b574.tar.gz |
Merge branch 'testing' of github.com:genenetwork/genenetwork2 into testing
Diffstat (limited to 'etc/default_settings.py')
-rw-r--r-- | etc/default_settings.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/etc/default_settings.py b/etc/default_settings.py index 4a35f42d..64a78686 100644 --- a/etc/default_settings.py +++ b/etc/default_settings.py @@ -25,6 +25,10 @@ import os import sys GN_VERSION = open("../etc/VERSION","r").read() +GN_SERVER_URL = "http://localhost:8880/" # REST API server + +# ---- MySQL + SQL_URI = "mysql://gn2:mysql_password@localhost/db_webqtl_s" SQL_ALCHEMY_POOL_RECYCLE = 3600 GN_SERVER_URL = "http://localhost:8880/" # REST API server @@ -45,13 +49,13 @@ SECRET_HMAC_CODE = '\x08\xdf\xfa\x93N\x80\xd9\\H@\\\x9f`\x98d^\xb4a;\xc6OM\x946a GITHUB_CLIENT_ID = "UNKNOWN" GITHUB_CLIENT_SECRET = "UNKNOWN" -GITHUB_AUTH_URL = "UNKNOWN" -GITHUB_API_URL = "UNKNOWN" +GITHUB_AUTH_URL = "https://github.com/login/oauth/authorize" +GITHUB_API_URL = "https://api.github.com/user" ORCID_CLIENT_ID = "UNKNOWN" ORCID_CLIENT_SECRET = "UNKNOWN" -ORCID_AUTH_URL = "UNKNOWN" -ORCID_TOKEN_URL = "UNKNOWN" +ORCID_AUTH_URL = "https://orcid.org/oauth/authorize" +ORCID_TOKEN_URL = "https://orcid.org/oauth/token" ELASTICSEARCH_HOST = "localhost" ELASTICSEARCH_PORT = '9200' |