Фаза 1: удалён Dockerfile, drhider_server.py, gunicorn из requirements, __main__ блок
Deploy drhider / validate (push) Waiting to run

This commit is contained in:
2026-07-12 08:19:45 +04:00
parent 660d5c69d7
commit a2f754ab4f
6 changed files with 100 additions and 171 deletions
+1 -10
View File
@@ -84,13 +84,4 @@ def api_drhider():
return jsonify({"ok": False, "error": str(e)}), 500
if __name__ == "__main__":
import subprocess
subprocess.run([
sys.executable, "-m", "gunicorn", "app:app",
"--bind", "0.0.0.0:5000",
"--worker-class", "gevent",
"--workers", "1",
"--worker-connections", "1000",
"--timeout", "300",
])