1.2.2: Profile Upgraded

This commit is contained in:
2026-01-27 00:57:35 +08:00
parent 1b9cab5628
commit b9c1af5d70
17 changed files with 655 additions and 186 deletions

14
run_rebuild_fix.py Normal file
View File

@@ -0,0 +1,14 @@
from web.app import create_app
from web.services.feature_service import FeatureService
import sys
import os
# Ensure project root is in path
sys.path.append(os.getcwd())
app = create_app()
with app.app_context():
print("Starting Feature Rebuild...")
count = FeatureService.rebuild_all_features()
print(f"Rebuild Complete. Processed {count} players.")