feat: Add recent performance stability stats (matches/days) to player profile

This commit is contained in:
2026-01-28 14:04:32 +08:00
commit 48f1f71d3a
104 changed files with 17572 additions and 0 deletions

12
wsgi.py Normal file
View File

@@ -0,0 +1,12 @@
import sys
import os
# Ensure the project root is in sys.path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from web.app import create_app
app = create_app()
if __name__ == "__main__":
app.run()