migration: preserve frontend shell pages and styles

This commit is contained in:
leefer
2026-07-31 15:08:57 +08:00
parent 38de3de0a3
commit dec3cd1236
92 changed files with 10758 additions and 9449 deletions
+10 -8
View File
@@ -75,13 +75,15 @@ def code_hotspots() -> list[dict[str, Any]]:
"screener.py",
"market_insights.py",
"tushare_client.py",
"static/index.html",
"static/app.js",
"static/styles.css",
"static/redesign-v2.css",
"static/renovation.css",
"static/theme.css",
"static/wentian-v2.css",
"frontend/index.html",
"frontend/app.js",
"frontend/styles/styles.css",
"frontend/styles/redesign-v2.css",
"frontend/styles/renovation.css",
"frontend/styles/theme.css",
"frontend/pages/heaven/page.css",
"frontend/pages/heaven/page.js",
"frontend/pages/market/runtime.js",
]
rows = []
for name in candidates:
@@ -97,7 +99,7 @@ def code_hotspots() -> list[dict[str, Any]]:
def build() -> dict[str, Any]:
html = source("static/index.html")
html = source("frontend/index.html")
server = source("server.py")
database = source("database.py")
pages = page_inventory(html)