diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-05-14 23:11:51 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-05-14 23:11:51 -0700 |
commit | c177c08c49818b0653f3c57f2ddad9af8f9ab0d0 (patch) | |
tree | 4b6d76d06684b2f454d631f2f62d42da9d9efb6e /Makefile | |
parent | 3346a8d61c40e3f18b26c13df9dfafc2a0ad8e80 (diff) | |
download | fatcat-scholar-c177c08c49818b0653f3c57f2ddad9af8f9ab0d0.tar.gz fatcat-scholar-c177c08c49818b0653f3c57f2ddad9af8f9ab0d0.zip |
ES index and makefile target
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -20,3 +20,11 @@ dev: ## Run web service locally, with reloading .PHONY: run run: ## Run web service under gunicorn pipenv run gunicorn fatcat_scholar.web:app -w 4 -k uvicorn.workers.UvicornWorker + +.PHONY: reset-index-dev +reset-index-dev: ## Delete/Create DEV elasticsearch fulltext index locally + http delete :9200/dev_scholar_fulltext_v01 && true + http put ":9200/qa_scholar_fulltext_v01?include_type_name=false" < schema/scholar_fulltext.v01.json + http delete :9200/dev_scholar_fulltext && true + http put :9200/dev_scholar_fulltext_v01/_alias/dev_scholar_fulltext + |