From d46e1154584d387cc68ce702be90c2f13cf2cd0d Mon Sep 17 00:00:00 2001 From: Wassim Chakroun <87650566+W7CH@users.noreply.github.com> Date: Tue, 6 Aug 2024 11:28:13 +0200 Subject: [PATCH] Add a Procfile used to launch the Fastapi server with Uvicorn --- fastapi_model_serving/fastapi/Procfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 fastapi_model_serving/fastapi/Procfile diff --git a/fastapi_model_serving/fastapi/Procfile b/fastapi_model_serving/fastapi/Procfile new file mode 100644 index 0000000..122471a --- /dev/null +++ b/fastapi_model_serving/fastapi/Procfile @@ -0,0 +1 @@ +web: uvicorn server:api_server --host 0.0.0.0 --port $PORT