From 6f7998425e0d0e6d6861e77be77c7e808130b14d Mon Sep 17 00:00:00 2001 From: "huangzhelong.byte" Date: Mon, 31 Mar 2025 14:38:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20readme=EF=BC=8C=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=90=AF=E5=8A=A8=E9=A1=B9=E7=9B=AE=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 20 ++++++++++++++++++++ configure.sh | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 configure.sh 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