# Deployment_UI.py — UI-only (binds to /api/* provided by Deployment_UI_BE.py) from fastapi import APIRouter from fastapi.responses import HTMLResponse router = APIRouter() @router.get("/Deployment_UI", response_class=HTMLResponse) def deployment_ui_page(): html_head = """ Deployment UI ← Back
Hide Logs
Starting…
""" return HTMLResponse(content=html_head + html_tail)