diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 15:32:57 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-01-28 15:32:57 -0800 |
commit | 4137d2e8303999dedca404c2a369e7a8b6daf6ca (patch) | |
tree | e23b59551220e6c306069a80b742f4ceb28cb603 /python/fatcat_web/web_config.py | |
parent | a0c2548c9ced4caa6ce088fed468059fe86013b8 (diff) | |
download | fatcat-4137d2e8303999dedca404c2a369e7a8b6daf6ca.tar.gz fatcat-4137d2e8303999dedca404c2a369e7a8b6daf6ca.zip |
more ES index fixes
Diffstat (limited to 'python/fatcat_web/web_config.py')
-rw-r--r-- | python/fatcat_web/web_config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/fatcat_web/web_config.py b/python/fatcat_web/web_config.py index 9ce32ed7..8fe50049 100644 --- a/python/fatcat_web/web_config.py +++ b/python/fatcat_web/web_config.py @@ -25,7 +25,8 @@ class Config(object): # can set this to https://search.fatcat.wiki for some experimentation ELASTICSEARCH_BACKEND = os.environ.get("ELASTICSEARCH_BACKEND", default="http://localhost:9200") - ELASTICSEARCH_INDEX = os.environ.get("ELASTICSEARCH_INDEX", default="fatcat") + ELASTICSEARCH_RELEASE_INDEX = os.environ.get("ELASTICSEARCH_RELEASE_INDEX", default="fatcat_release") + ELASTICSEARCH_CONTAINER_INDEX = os.environ.get("ELASTICSEARCH_CONTAINER_INDEX", default="fatcat_container") # for flask things, like session cookies FLASK_SECRET_KEY = os.environ.get("FLASK_SECRET_KEY", default=None) |