diff options
author | BonfaceKilz | 2021-05-05 12:50:19 +0300 |
---|---|---|
committer | GitHub | 2021-05-05 12:50:19 +0300 |
commit | 402c21508f47a486dab6b2a9daa9e006f26beb61 (patch) | |
tree | 11457fecd5b454962f1db4320f244554b13ce6e1 /gn3/settings.py | |
parent | 31ac939f58bf7b6d353ced995ca395376203b25f (diff) | |
parent | 82a75b3efd23a8dba1c8eea15c4fc450219a1f86 (diff) | |
download | genenetwork3-402c21508f47a486dab6b2a9daa9e006f26beb61.tar.gz |
Merge pull request #9 from genenetwork/Feature/speed-up-correlation
Feature/speed up correlation
Diffstat (limited to 'gn3/settings.py')
-rw-r--r-- | gn3/settings.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index e77a977..7b3ffb7 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -12,6 +12,9 @@ REDIS_JOB_QUEUE = "GN3::job-queue" TMPDIR = os.environ.get("TMPDIR", tempfile.gettempdir()) # SQL confs -SQL_URI = os.environ.get("SQL_URI", "mysql://kabui:1234@localhost/db_webqtl") +SQL_URI = os.environ.get("SQL_URI", "mysql://webqtlout:webqtlout@localhost/db_webqtl") SECRET_KEY = "password" SQLALCHEMY_TRACK_MODIFICATIONS = False +# gn2 results only used in fetching dataset info + +GN2_BASE_URL = "http://www.genenetwork.org/" |