Spaces:
Runtime error
Runtime error
prashasti commited on
Commit ·
cf752b1
1
Parent(s): 75a5f12
Revert "UI changes"
Browse filesThis reverts commit 75a5f121a457df07694f4e0ae71ec2292dac70fb.
- server/app.py +1 -1
server/app.py
CHANGED
|
@@ -115,7 +115,7 @@ ui = build_ui()
|
|
| 115 |
app = gr.mount_gradio_app(app, ui, path="/ui")
|
| 116 |
|
| 117 |
def main():
|
| 118 |
-
port = int(os.getenv("PORT",
|
| 119 |
uvicorn.run(app, host="0.0.0.0", port=port)
|
| 120 |
|
| 121 |
|
|
|
|
| 115 |
app = gr.mount_gradio_app(app, ui, path="/ui")
|
| 116 |
|
| 117 |
def main():
|
| 118 |
+
port = int(os.getenv("PORT", 8000))
|
| 119 |
uvicorn.run(app, host="0.0.0.0", port=port)
|
| 120 |
|
| 121 |
|