From 5e3f586f0fcb420cad6522a8327632f8e5284dfe Mon Sep 17 00:00:00 2001 From: tanlianwang Date: Thu, 12 Feb 2026 10:08:06 +0800 Subject: [PATCH] =?UTF-8?q?feat(config):=20=E6=B7=BB=E5=8A=A0=E7=A6=BB?= =?UTF-8?q?=E7=BA=BF=E9=83=A8=E7=BD=B2=E5=92=8C=E5=89=8D=E5=90=8E=E7=AB=AF?= =?UTF-8?q?=E5=88=86=E7=A6=BB=E9=85=8D=E7=BD=AE=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 config.yaml 配置文件,包含数据库、模型、Redis等完整配置项 - 添加 package-lock.json 锁定依赖版本 - 创建 README_OFFLINE_DEPLOY.md 离线部署指南文档 - 创建 README_SEPARATE.md 前后端分离启动说明文档 - 添加 start_backend.sh 后端服务启动脚本 - 添加 start_frontend.sh 前端服务启动脚本 - 配置 Docker 离线镜像构建和运行说明 - 提供完整的系统要求和故障排除指南 --- config.yaml | 2 +- start_frontend.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/config.yaml b/config.yaml index 7a325c36e..0be4ffc7c 100644 --- a/config.yaml +++ b/config.yaml @@ -27,7 +27,7 @@ DEBUG: false REDIS_HOST: 127.0.0.1 REDIS_PORT: 6379 REDIS_PASSWORD: 199628@tlw -REDIS_DB: 0 +REDIS_DB: 1 REDIS_MAX_CONNECTIONS: 100 # 日志级别 diff --git a/start_frontend.sh b/start_frontend.sh index 435b892d3..11ccc49d5 100755 --- a/start_frontend.sh +++ b/start_frontend.sh @@ -10,7 +10,6 @@ cd ui && npm run chat & echo "Frontend interfaces started." echo "Admin interface will be available at http://localhost:3000" -echo "Chat interface will be available at http://localhost:3001" echo "Make sure the backend service is running at http://localhost:8080" echo "Press Ctrl+C to stop both interfaces."