Initial import of Brookhaven site

This commit is contained in:
2025-11-18 20:28:52 +00:00
parent 7e27f39d01
commit 773a91dd2f
1900 changed files with 700543 additions and 0 deletions

7
wsgi.py Normal file
View File

@@ -0,0 +1,7 @@
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)