1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/FastAPI_ynh.git synced 2024-09-03 18:36:00 +02:00
fastapi_ynh/conf/__init__.py
Leonard bd923a6743
Change default api example
URL '/' can't work with this application, since '/' redirects to '/docs'
2024-06-10 10:00:35 +02:00

20 lines
474 B
Python

import os
from typing import Union
from fastapi import FastAPI
UVICORN_ROOT_PATH = os.environ.get('UVICORN_ROOT_PATH')
if UVICORN_ROOT_PATH and len(UVICORN_ROOT_PATH) > 0 and UVICORN_ROOT_PATH != '/':
app = FastAPI(root_path=UVICORN_ROOT_PATH)
else:
app = FastAPI()
@app.get("/example")
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}