Spaces:
Runtime error
Runtime error
prashasti commited on
Commit ·
75a5f12
1
Parent(s): f854d89
UI changes
Browse files- 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", 7860))
|
| 119 |
uvicorn.run(app, host="0.0.0.0", port=port)
|
| 120 |
|
| 121 |
|