This commit is contained in:
eric
2026-03-28 17:16:38 -05:00
parent 37ab25911a
commit 46fb194a02
20 changed files with 962 additions and 331 deletions

View File

@@ -26,14 +26,21 @@ REPO_ROOT = Path(__file__).resolve().parent.parent
FILES = [
"src/android_control.py",
"src/async_thread_loop.py",
"src/youtube_ini_sync.py",
"src/control_plane.py",
"src/web_process_backend.py",
"src/hub_routes.py",
"src/live_config/__init__.py",
"src/live_config/loader.py",
"web.py",
"youtube.py",
"tiktok.py",
"main.py",
"scripts/hardware_probe.py",
"config/hardware.env.example",
"ecosystem.config.cjs",
"docs/install-profiles.md",
"douyin_youtube_ffplay.py",
"scripts/linux/install_hub.sh",
"scripts/linux/reinstall_live_edge.sh",
@@ -58,6 +65,7 @@ FILES = [
"web-console/components/live-product/LiveControlApp.tsx",
"web-console/components/live-product/LiveAndroidWorkstation.tsx",
"web-console/components/live-product/LiveYoutubeUnmannedView.tsx",
"web-console/components/live-product/LiveProcessLiveLogCard.tsx",
"web-console/components/live-product/LiveTiktokHdmiView.tsx",
"web-console/lib/panelUrls.ts",
"web-console/lib/youtubeProChannels.ts",
@@ -222,8 +230,9 @@ def main() -> int:
_safe_print(f"已上传: {rel}")
py_compile = (
f"cd {REMOTE_BASE} && python3 -m py_compile web.py "
f"cd {REMOTE_BASE} && python3 -m py_compile web.py youtube.py tiktok.py "
"src/control_plane.py src/web_process_backend.py src/hub_routes.py "
"src/async_thread_loop.py src/youtube_ini_sync.py "
"src/live_config/__init__.py src/live_config/loader.py "
"scripts/hardware_probe.py douyin_youtube_ffplay.py main.py"
)