fix: app.run(threaded=True) для долгих запросов
Deploy drhider / validate (push) Waiting to run

This commit is contained in:
2026-07-12 10:16:52 +04:00
parent 3e5aef70a0
commit 72ae915935
2 changed files with 503 additions and 1 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ app = create_app()
# Штурвал запускает: cd site && python app.py
# Нужен app.run() чтобы процесс слушал порт
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)
app.run(host="0.0.0.0", port=5000, threaded=True)