1.2.0: Refined all 6D calcs and UI/UX Experiences.

This commit is contained in:
2026-01-26 21:10:42 +08:00
parent 8cc359b0ec
commit ade29ec1e8
25 changed files with 2498 additions and 482 deletions

18
scripts/run_rebuild.py Normal file
View File

@@ -0,0 +1,18 @@
import sys
import os
# Add project root to path
current_dir = os.path.dirname(os.path.abspath(__file__))
project_root = os.path.dirname(current_dir)
sys.path.append(project_root)
from web.services.feature_service import FeatureService
print("Starting Rebuild...")
try:
count = FeatureService.rebuild_all_features(min_matches=1)
print(f"Rebuild Complete. Processed {count} players.")
except Exception as e:
print(f"Error: {e}")
import traceback
traceback.print_exc()