2023-12-08 15:03:41 +01:00
|
|
|
import os
|
2023-11-28 15:45:06 +01:00
|
|
|
from typing import Union
|
|
|
|
|
|
|
|
from fastapi import FastAPI
|
|
|
|
|
2023-12-08 15:03:41 +01:00
|
|
|
UVICORN_ROOT_PATH = os.environ.get('UVICORN_ROOT_PATH')
|
2023-11-28 15:45:06 +01:00
|
|
|
|
2024-03-05 16:04:22 +01:00
|
|
|
if UVICORN_ROOT_PATH and len(UVICORN_ROOT_PATH) > 0 and UVICORN_ROOT_PATH != '/':
|
|
|
|
app = FastAPI(root_path=UVICORN_ROOT_PATH)
|
|
|
|
else:
|
|
|
|
app = FastAPI()
|
2023-11-28 15:45:06 +01:00
|
|
|
|
|
|
|
@app.get("/")
|
|
|
|
def read_root():
|
|
|
|
return {"Hello": "World"}
|
|
|
|
|
|
|
|
|
|
|
|
@app.get("/items/{item_id}")
|
|
|
|
def read_item(item_id: int, q: Union[str, None] = None):
|
|
|
|
return {"item_id": item_id, "q": q}
|