Update app.py which change the local port 5000 to 7860
Browse files
app.py
CHANGED
|
@@ -1434,4 +1434,4 @@ if __name__ == "__main__":
|
|
| 1434 |
print(" Open http://127.0.0.1:5000 in your browser")
|
| 1435 |
print("=" * 60)
|
| 1436 |
|
| 1437 |
-
app.run(host="0.0.0.0", port=
|
|
|
|
| 1434 |
print(" Open http://127.0.0.1:5000 in your browser")
|
| 1435 |
print("=" * 60)
|
| 1436 |
|
| 1437 |
+
app.run(host="0.0.0.0", port=7860, debug=False, threaded=True)
|