diff options
author | Frederick Muriuki Muriithi | 2022-10-27 12:25:03 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-10-28 15:58:01 +0300 |
commit | 2357452ccdcf475bcad3a5da7de43f4d481e296b (patch) | |
tree | ae3f148768e429356fc140772b01d09e5efc4d78 /wqflask/utility | |
parent | d28ba52084c276db319173885d81e5a550341cd2 (diff) | |
download | genenetwork2-2357452ccdcf475bcad3a5da7de43f4d481e296b.tar.gz |
Settings: Add the `REDIS_URL` setting.
Diffstat (limited to 'wqflask/utility')
-rw-r--r-- | wqflask/utility/tools.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py index 636bf040..d4c83302 100644 --- a/wqflask/utility/tools.py +++ b/wqflask/utility/tools.py @@ -278,6 +278,7 @@ LOG_SQL_ALCHEMY = get_setting_bool('LOG_SQL_ALCHEMY') LOG_BENCH = get_setting_bool('LOG_BENCH') LOG_FORMAT = "%(message)s" # not yet in use USE_REDIS = get_setting_bool('USE_REDIS') +REDIS_URL = get_setting('REDIS_URL') USE_GN_SERVER = get_setting_bool('USE_GN_SERVER') GENENETWORK_FILES = get_setting('GENENETWORK_FILES') |