diff options
Diffstat (limited to 'thallium-backend/src/app.py')
| -rw-r--r-- | thallium-backend/src/app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thallium-backend/src/app.py b/thallium-backend/src/app.py index 5907348..6060ec3 100644 --- a/thallium-backend/src/app.py +++ b/thallium-backend/src/app.py @@ -9,7 +9,7 @@ from src.settings import CONFIG log = logging.getLogger(__name__) -fastapi_app = FastAPI(debug=CONFIG.debug) +fastapi_app = FastAPI(debug=CONFIG.debug, root_path=CONFIG.app_prefix) fastapi_app.include_router(top_level_router) |