50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
# Bytedesk 客服系统集成文件
|
||
|
||
以下文件和目录属于客服系统集成功能,未提交到当前分支:
|
||
|
||
## 1. Dify 机器人控制逻辑
|
||
**位置**: public/index.html
|
||
**状态**: 已存入 stash
|
||
**Stash ID**: stash@{0}
|
||
**说明**: 根据路径控制 Dify 机器人显示(已设置为完全不显示,只使用 Bytedesk 客服)
|
||
|
||
## 2. Bytedesk 集成代码
|
||
**位置**: src/bytedesk-integration/
|
||
**状态**: 未跟踪文件(需要手动管理)
|
||
**内容**:
|
||
- .env.bytedesk.example - Bytedesk 环境变量配置示例
|
||
- App.jsx.example - 集成 Bytedesk 的示例代码
|
||
- components/ - Bytedesk 相关组件
|
||
- config/ - Bytedesk 配置文件
|
||
- 前端工程师集成手册.md - 详细集成文档
|
||
|
||
## 恢复方法
|
||
|
||
### 恢复 public/index.html 的改动:
|
||
```bash
|
||
git stash apply stash@{0}
|
||
```
|
||
|
||
### 使用 Bytedesk 集成代码:
|
||
```bash
|
||
# 查看集成手册
|
||
cat src/bytedesk-integration/前端工程师集成手册.md
|
||
|
||
# 复制示例配置
|
||
cp src/bytedesk-integration/.env.bytedesk.example .env.bytedesk
|
||
cp src/bytedesk-integration/App.jsx.example src/App.jsx
|
||
```
|
||
|
||
## 注意事项
|
||
|
||
⚠️ **重要提示:**
|
||
- `src/bytedesk-integration/` 目录中的文件是未跟踪的(untracked)
|
||
- 如果需要提交客服功能,需要先添加到 git:
|
||
```bash
|
||
git add src/bytedesk-integration/
|
||
git commit -m "feat: 集成 Bytedesk 客服系统"
|
||
```
|
||
|
||
- 当前分支(feature_bugfix/251110_event)专注于非客服功能
|
||
- 建议在单独的分支中开发客服功能
|