This commit is contained in:
eric
2026-03-28 02:39:29 -05:00
parent 243b9d7acb
commit 4b3c6cbee4
23 changed files with 1468 additions and 173 deletions

6
start.bat Normal file
View File

@@ -0,0 +1,6 @@
@echo off
cd /d "%~dp0"
if not defined HOST set "HOST=0.0.0.0"
if not defined PORT set "PORT=8001"
echo [start] 生产模式 HOST=%HOST% PORT=%PORT%
python scripts\launch.py --host %HOST% --port %PORT%