This commit is contained in:
Waloshi6
2026-02-08 14:34:23 +01:00
parent 908c25840e
commit 9e68016e8a
3 changed files with 5 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ async def monitor_requests(request: Request, call_next):
@app.get("/", response_class=HTMLResponse)
async def home(request: Request):
md_file_path = "/app/TpDevOpsProject.md"
md_file_path = "/app/readme.md"
try:
with open(md_file_path, "r", encoding="utf-8") as f:
md_content = f.read()