Initial import of NetDeploy project

This commit is contained in:
2025-11-18 20:18:33 +00:00
parent 69301a0b8e
commit 01fae4e10f
1364 changed files with 364313 additions and 0 deletions

6
wsgi.py Normal file
View File

@@ -0,0 +1,6 @@
from app import app # Flask() instance
application = app # alias for hosts that expect "application"
if __name__ == "__main__":
from app import socketio
socketio.run(app, host="0.0.0.0", port=5000, debug=False)