Final push: Correct directory structure and content

This commit is contained in:
Agent
2026-05-17 10:04:27 +00:00
commit 203518ac66
5 changed files with 40 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
from fastapi import FastAPI, Request
from fastapi.responses import HTMLResponse
import uvicorn
app = FastAPI()
@app.get("/", response_class=HTMLResponse)
def read_root():
with open("index.html", "r") as f:
return f.read()
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)