aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b83ddf3..bca5b3f 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@ serve: ## Run web service locally, with reloading
.PHONY: serve-qa
serve-qa: ## Run web service locally, with reloading, but point search queries to QA search index
- ENV_FOR_DYNACONF=qa DYNACONF_SCHOLAR_ENV=dev pipenv run uvicorn fatcat_scholar.web:app --reload --port 9819
+ ENV_FOR_DYNACONF=development-qa pipenv run uvicorn fatcat_scholar.web:app --reload --port 9819
.PHONY: serve-gunicorn
serve-gunicorn: ## Run web service under gunicorn
@@ -48,7 +48,7 @@ fetch-works: ## Fetches some works from any release .json in the data dir
cat data/release_*.json | jq . -c | pipenv run python -m fatcat_scholar.work_pipeline run_releases | pv -l > data/work_intermediate.json
.PHONY: fetch-sim
-fetch-sim: ## Fetches some SIM pages
+fetch-sim: ## Fetches some (not all) SIM pages
pipenv run python -m fatcat_scholar.sim_pipeline run_issue_db --limit 500 | pv -l > data/sim_intermediate.json
.PHONY: dev-index