From ddf6a4bc108fb565428baa31ef2137c867ac0a2b Mon Sep 17 00:00:00 2001 From: wbornor Date: Mon, 1 Jan 2024 13:50:37 -0500 Subject: [PATCH] root_path --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index 75c6aa6..ae03d34 100644 --- a/app/main.py +++ b/app/main.py @@ -8,7 +8,7 @@ from app.repository.items import ItemsRepository from app.routers.items import ItemsRouter -app = FastAPI() +app = FastAPI(root_path="/Prod") lambda_handler = Mangum(app, lifespan="off")