更新 readme,增加启动项目说明

This commit is contained in:
huangzhelong.byte 2025-03-31 14:38:19 +08:00
parent 37d0194fab
commit 6f7998425e
2 changed files with 22 additions and 0 deletions

View File

@ -36,3 +36,23 @@
- `app`: 前端 UI 的定义
- `test`: 测试 `app` 的部分,包含一个简易的转发层
- `src`: vscode 插件端定义
### 初始化环境
```bash
source configure.sh
```
### 启动前端
```bash
cd app
npm run serve
```
### 启动后端 (Test)
```bash
cd test
npm run serve
```

2
configure.sh Normal file
View File

@ -0,0 +1,2 @@
cd app && npm i && cd..
cd test && npm i && node patch-mcp-sdk.js && cd ..