diff --git a/Makefile b/Makefile index 69c6d8d..4df26ff 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -.PHONY: run run_http run_worker run_test +.PHONY: run run_http run_worker run_processor run_test run: ./start_all.sh run_http: - uvicorn main:app --host 0.0.0.0 --reload + uvicorn main:app --host 0.0.0.0 run_worker: python run_worker.py @@ -13,4 +13,4 @@ run_processor: python run_processor.py run_test: - python -m pytest test \ No newline at end of file + python -m pytest test diff --git a/start_all.sh b/start_all.sh index b108983..9d9e573 100755 --- a/start_all.sh +++ b/start_all.sh @@ -2,7 +2,7 @@ if [ "$ROLE" != "worker" ]; then # Start the HTTP server process in the background if not a worker - uvicorn main:app --host 0.0.0.0 --port ${PRESTO_PORT} --reload + uvicorn main:app --host 0.0.0.0 --port ${PRESTO_PORT} else # Start worker processes in background