feat: 自动提交 - 周一 2025/09/22 15:12:38.91

This commit is contained in:
赵杰
2025-09-22 15:12:38 +01:00
parent 9306e7a401
commit b635c9e7d4
41 changed files with 7360 additions and 950 deletions

22
start_legacy.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
echo 启动TSP智能助手传统版本...
echo.
echo 检查Python环境...
python --version >nul 2>&1
if %errorlevel% neq 0 (
echo 错误: 未找到Python请先安装Python
echo 下载地址: https://www.python.org/downloads/
pause
exit /b 1
)
echo 启动Web服务器...
echo 访问地址: http://localhost:5000
echo.
echo 按 Ctrl+C 停止服务器
echo.
python src/web/app.py
pause