1.3.0: Updated ONLINE.

This commit is contained in:
2026-01-27 02:20:55 +08:00
parent e006772e9c
commit a148c2d511
12 changed files with 36 additions and 3 deletions

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.")