Add files via upload

This commit is contained in:
Colonel Panic
2025-11-12 21:14:08 -05:00
committed by GitHub
parent 0ae84fbc85
commit f9aff089e6
5 changed files with 720 additions and 8 deletions
+1 -1
View File
@@ -1299,7 +1299,7 @@ if __name__ == '__main__':
print("Press Ctrl+C to stop the server")
try:
socketio.run(app, debug=False, host='0.0.0.0', port=5000)
socketio.run(app, debug=False, host='0.0.0.0', port=5000, allow_unsafe_werkzeug=True)
except KeyboardInterrupt:
print("\nShutting down server...")
# Clean up connections
+5 -5
View File
@@ -1,7 +1,7 @@
Flask==2.2.5
Flask-SocketIO==5.3.6
python-socketio==5.8.0
python-engineio==4.7.1
Flask>=3.0.0
Flask-SocketIO>=5.3.6
python-socketio>=5.11.0
python-engineio>=4.9.0
pyserial==3.5
Werkzeug==2.2.3
Werkzeug>=3.0.0
requests==2.31.0