Skip to content

Commit ff2e992

Browse files
committed
update
1 parent aaae376 commit ff2e992

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

simple_app.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@
99
from motor.motor_asyncio import AsyncIOMotorClient
1010

1111
# Simple app without complex dependencies
12-
app = FastAPI(title="Interview Coach API", version="1.0.0")
12+
app = FastAPI(
13+
title="Interview Coach API",
14+
version="1.0.0",
15+
root_path="/api",
16+
docs_url="/docs",
17+
redoc_url="/redoc",
18+
openapi_url="/openapi.json",
19+
)
20+
1321

1422
# MongoDB connection
1523
client = None

0 commit comments

Comments
 (0)