ovdashboard/api/ovdashboard_api/main.py

42 lines
875 B
Python

#!/usr/bin/env python3
"""
Main executable of `ovdashboard_api`.
Creates the main `FastAPI` app.
If run directly, uses `uvicorn` to run the app.
"""
import uvicorn
from fastapi import FastAPI
from .settings import SETTINGS
from .routers import main_router
app = FastAPI(
title="OVDashboard API",
description="This API enables the `OVDashboard` service.",
contact={
"name": "Jörn-Michael Miehe",
"email": "jmm@yavook.de",
},
openapi_url=SETTINGS.openapi_url,
docs_url=SETTINGS.docs_url if not SETTINGS.production_mode else None,
redoc_url=SETTINGS.redoc_url if not SETTINGS.production_mode else None,
)
app.include_router(main_router)
def main() -> None:
uvicorn.run(
app="ovdashboard_api.main:app",
host="0.0.0.0",
port=8000,
reload=True,
)
if __name__ == "__main__":
main()