We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaae376 commit ff2e992Copy full SHA for ff2e992
1 file changed
simple_app.py
@@ -9,7 +9,15 @@
9
from motor.motor_asyncio import AsyncIOMotorClient
10
11
# Simple app without complex dependencies
12
-app = FastAPI(title="Interview Coach API", version="1.0.0")
+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
+
21
22
# MongoDB connection
23
client = None
0 commit comments