Update app.py
Browse files
app.py
CHANGED
|
@@ -192,3 +192,8 @@ def reset():
|
|
| 192 |
# from waitress import serve
|
| 193 |
# # Use threads to approximate “workers” on Windows (Waitress is single‑process).
|
| 194 |
# serve(app, host="0.0.0.0", port=9001, threads=4)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 192 |
# from waitress import serve
|
| 193 |
# # Use threads to approximate “workers” on Windows (Waitress is single‑process).
|
| 194 |
# serve(app, host="0.0.0.0", port=9001, threads=4)
|
| 195 |
+
|
| 196 |
+
|
| 197 |
+
if __name__ == "__main__":
|
| 198 |
+
app.run(host="0.0.0.0", port=7860)
|
| 199 |
+
|