Update app.py
Browse files
app.py
CHANGED
|
@@ -495,5 +495,5 @@ def ping():
|
|
| 495 |
return jsonify({"status": "ok"})
|
| 496 |
|
| 497 |
if __name__ == "__main__":
|
| 498 |
-
port = int(os.getenv("PORT",
|
| 499 |
app.run(host="0.0.0.0", port=port, debug=True)
|
|
|
|
| 495 |
return jsonify({"status": "ok"})
|
| 496 |
|
| 497 |
if __name__ == "__main__":
|
| 498 |
+
port = int(os.getenv("PORT", 7860))
|
| 499 |
app.run(host="0.0.0.0", port=port, debug=True)
|