From ec268a5ea3316225518d92a0f17f8a6819f59916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B8=D0=BA=D1=82=D0=BE=D1=80?= <78488229+viktor138irk@users.noreply.github.com> Date: Tue, 12 May 2026 02:14:18 +0900 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=BA=D0=BB=D1=8E?= =?UTF-8?q?=D1=87=D0=B8=D0=BB=20=D0=BA=D0=BE=D1=80=D0=BD=D0=B5=D0=B2=D0=BE?= =?UTF-8?q?=D0=B9=20UI=20=D0=BD=D0=B0=20runtime=20=D0=B8=D0=BD=D1=82=D0=B5?= =?UTF-8?q?=D1=80=D1=84=D0=B5=D0=B9=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/main.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index e6bbaca..d872418 100644 --- a/backend/main.py +++ b/backend/main.py @@ -97,7 +97,12 @@ def _apk_meta(path: str, workspace: str) -> dict: @app.get('/') async def root(): - return FileResponse(FRONTEND_DIR / 'index.html') + return FileResponse(FRONTEND_DIR / 'runtime.html') + + +@app.get('/runtime') +async def runtime_page(): + return FileResponse(FRONTEND_DIR / 'runtime.html') @app.get('/workspace.js')