diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-05-20 17:04:59 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-05-20 17:04:59 -0700 |
commit | 75b795157d9b57e2ea096003a84d77539f25a4a5 (patch) | |
tree | ba9366c088717c0eb892332fdc02af53b4c6144d | |
parent | ede7430126d551796a1d9b086d3cfe8d97503b3c (diff) | |
download | fatcat-scholar-75b795157d9b57e2ea096003a84d77539f25a4a5.tar.gz fatcat-scholar-75b795157d9b57e2ea096003a84d77539f25a4a5.zip |
default search locations for different environments
-rw-r--r-- | settings.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/settings.toml b/settings.toml index 3769f85..177822d 100644 --- a/settings.toml +++ b/settings.toml @@ -8,9 +8,12 @@ COVID19_FULLTEXT_HOST = "https://covid19.fatcat.wiki" [dev] ELASTICSEARCH_FULLTEXT_INDEX = "dev_scholar_fulltext" +ELASTICSEARCH_BACKEND = "http://localhost:9200" [qa] ELASTICSEARCH_FULLTEXT_INDEX = "qa_scholar_fulltext" +ELASTICSEARCH_BACKEND = "http://localhost:9200" -[production] +[prod] ELASTICSEARCH_FULLTEXT_INDEX = "scholar_fulltext" +ELASTICSEARCH_BACKEND = "https://search.fatcat.wiki" |