diff options
author | Bryan Newbold <bnewbold@archive.org> | 2022-08-12 10:52:46 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2022-08-12 10:52:46 -0700 |
commit | 19670b4c2956f6289efe00b8dcff40fcb3d696ae (patch) | |
tree | a1f1a81df5796321f73f7753b351cde2ba9558d2 | |
parent | bec6d283b2186ac7c560ee525fb4d58467506068 (diff) | |
download | fatcat-scholar-19670b4c2956f6289efe00b8dcff40fcb3d696ae.tar.gz fatcat-scholar-19670b4c2956f6289efe00b8dcff40fcb3d696ae.zip |
makefile: serve-gunicorn on port 9819
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ serve-qa: ## Run web service locally, with reloading, but point search queries t .PHONY: serve-gunicorn serve-gunicorn: ## Run web service under gunicorn - pipenv run gunicorn fatcat_scholar.web:app -w 4 -k uvicorn.workers.UvicornWorker + pipenv run gunicorn fatcat_scholar.web:app -b 127.0.0.1:9819 -w 4 -k uvicorn.workers.UvicornWorker .PHONY: fetch-works fetch-works: ## Fetches some works from any release .json in the data dir |