diff --git a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/api/routes.py b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/api/routes.py index d4f863e..0233c60 100644 --- a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/api/routes.py +++ b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/api/routes.py @@ -1,11 +1,9 @@ from fastapi import APIRouter - api_router = APIRouter() + @api_router.get("/ping") async def pong(): """Тестовый роут""" return {"ping": "pong!"} - - diff --git a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/config.py b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/config.py index 3900da2..c088755 100644 --- a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/config.py +++ b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/config.py @@ -17,4 +17,5 @@ class Settings(BaseSettings): model_config = SettingsConfigDict(env_file=".env") + settings = Settings() diff --git a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/routes.py b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/routes.py index bea5bc9..513cd20 100644 --- a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/routes.py +++ b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/routes.py @@ -1,14 +1,17 @@ import os -from fastapi import APIRouter, Request +from fastapi import APIRouter, Request from fastapi.responses import HTMLResponse from fastapi.staticfiles import StaticFiles from fastapi.templating import Jinja2Templates - site_router = APIRouter() -print(os.path.abspath(os.curdir)) -site_router.mount("/static", StaticFiles(directory="servicemanager/frontend/static"), name="static") + +site_router.mount( + "/static", + StaticFiles(directory="servicemanager/frontend/static"), + name="static", +) templates = Jinja2Templates(directory="servicemanager/frontend/templates") @@ -16,6 +19,4 @@ templates = Jinja2Templates(directory="servicemanager/frontend/templates") @site_router.get("/testpage", response_class=HTMLResponse) async def read_item(request: Request): - return templates.TemplateResponse( - request=request, name="test.html" - ) + return templates.TemplateResponse(request=request, name="test.html") diff --git a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/templates/test.html b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/templates/test.html index 6cb687e..0e6d60d 100644 --- a/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/templates/test.html +++ b/information_system_and_programming/term_5/db_management_and_automation/servicemanager/frontend/templates/test.html @@ -1,8 +1,11 @@ +