Spaces:
Runtime error
Runtime error
File size: 306 Bytes
5bb150a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import uvicorn
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
app = FastAPI()
app.mount("/", StaticFiles(directory="./build", html=True), name="static")
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000,
log_level="debug", reload=False)
|