add middlewares (uvicorn)
This commit is contained in:
parent
e8d075a85f
commit
1d8748e63a
1 changed files with 24 additions and 24 deletions
|
@ -33,13 +33,7 @@ app = FastAPI(
|
||||||
|
|
||||||
app.include_router(main_router)
|
app.include_router(main_router)
|
||||||
|
|
||||||
|
if SETTINGS.production_mode:
|
||||||
def main() -> None:
|
|
||||||
"""
|
|
||||||
If the `main` script is run, `uvicorn` is used to run the app.
|
|
||||||
"""
|
|
||||||
|
|
||||||
if SETTINGS.production_mode:
|
|
||||||
# Mount frontend in production mode
|
# Mount frontend in production mode
|
||||||
app.mount(
|
app.mount(
|
||||||
path="/",
|
path="/",
|
||||||
|
@ -50,7 +44,7 @@ def main() -> None:
|
||||||
name="frontend",
|
name="frontend",
|
||||||
)
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# Allow CORS in debug mode
|
# Allow CORS in debug mode
|
||||||
app.add_middleware(
|
app.add_middleware(
|
||||||
CORSMiddleware,
|
CORSMiddleware,
|
||||||
|
@ -63,6 +57,12 @@ def main() -> None:
|
||||||
expose_headers=["*"],
|
expose_headers=["*"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
"""
|
||||||
|
If the `main` script is run, `uvicorn` is used to run the app.
|
||||||
|
"""
|
||||||
|
|
||||||
if webdav_check():
|
if webdav_check():
|
||||||
uvicorn_run(
|
uvicorn_run(
|
||||||
app="ovdashboard_api.main:app",
|
app="ovdashboard_api.main:app",
|
||||||
|
|
Loading…
Reference in a new issue