Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -131,5 +131,5 @@ print("🚀 Application initialized and ready to serve!")
|
|
131 |
# ---------------- Run Server ----------------
|
132 |
if __name__ == "__main__":
|
133 |
import uvicorn
|
134 |
-
port = int(os.environ.get("PORT",
|
135 |
uvicorn.run(app, host="0.0.0.0", port=port)
|
|
|
131 |
# ---------------- Run Server ----------------
|
132 |
if __name__ == "__main__":
|
133 |
import uvicorn
|
134 |
+
port = int(os.environ.get("PORT", 7865))
|
135 |
uvicorn.run(app, host="0.0.0.0", port=port)
|