Spaces:
Running
Running
from fastapi import FastAPI | |
from fastapi.responses import FileResponse | |
app = FastAPI() | |
async def read_root(): | |
return FileResponse("index.html") | |
if __name__ == "__main__": | |
import uvicorn | |
uvicorn.run(app, host="0.0.0.0", port=7860) |