diff --git a/app.py b/app.py index 3ea413c..2ed72b0 100644 --- a/app.py +++ b/app.py @@ -278,3 +278,6 @@ async def websocket_endpoint(websocket: WebSocket, nickname: str): async def root(): return FileResponse("index.html") +if __name__ == "__main__": + import uvicorn + uvicorn.run(app, host="0.0.0.0", port=8588)