diff --git a/README.md b/README.md index cfb22f8..9269f95 100644 --- a/README.md +++ b/README.md @@ -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 +``` \ No newline at end of file diff --git a/configure.sh b/configure.sh new file mode 100644 index 0000000..473cc13 --- /dev/null +++ b/configure.sh @@ -0,0 +1,2 @@ +cd app && npm i && cd.. +cd test && npm i && node patch-mcp-sdk.js && cd .. \ No newline at end of file