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

32
start_traditional.bat Normal file
View File

@@ -0,0 +1,32 @@
@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 Python环境正常
echo.
echo 启动Web服务器...
echo 访问地址: http://localhost:5000
echo.
echo 功能包括:
echo - 仪表板: http://localhost:5000
echo - 聊天页面: http://localhost:5000/chat
echo - 预警管理: http://localhost:5000/alerts
echo - 知识库: http://localhost:5000/knowledge
echo - 字段映射: http://localhost:5000/field-mapping
echo - 系统设置: http://localhost:5000/system
echo.
echo 按 Ctrl+C 停止服务器
echo.
python src/web/app.py
pause