chore: service模块给electron继续使用原编译方案;修改文档

This commit is contained in:
lirz 2025-05-09 09:23:00 +08:00
parent 7c30463062
commit e72b03a995
6 changed files with 52 additions and 25 deletions

View File

@ -145,10 +145,7 @@ B <--mcp--> m(MCP Server)
启动 dev server 启动 dev server
```bash ```bash
## linux npm run dev
./dev.sh
## windows
./dev.ps1
``` ```
> 端口占用: 8080 (renderer) + 8081 (service) > 端口占用: 8080 (renderer) + 8081 (service)
@ -163,11 +160,7 @@ B <--mcp--> m(MCP Server)
负载部署 负载部署
```bash ```bash
## linux npm run build
./build_service.sh
## windows
./build_service.ps1
``` ```
and just press f5, いただきます and just press f5, いただきます

View File

@ -1,17 +1,19 @@
# 安装 renderer 依赖 ## 安装 renderer 依赖
Set-Location renderer #Set-Location renderer
npm i #npm i
Set-Location .. #Set-Location ..
#
# 安装 service 依赖并打补丁 ## 安装 service 依赖并打补丁
Set-Location service #Set-Location service
npm i #npm i
node patch-mcp-sdk.js #node patch-mcp-sdk.js
Set-Location .. #Set-Location ..
Set-Location servers Set-Location servers
uv sync uv sync
Set-Location .. Set-Location ..
# 安装根目录依赖 # 安装根目录依赖
npm i npm i
npm run prepare:ocr

View File

@ -1,5 +1,3 @@
cd renderer && npm i && cd .. cd servers && uv sync && cd ..
cd service && npm i && cd ..
cd servers && uv sync
npm i npm i
npm run prepare:ocr npm run prepare:ocr

View File

@ -10,6 +10,7 @@
"dev": "ts-node-dev --respawn --transpile-only src/main.ts", "dev": "ts-node-dev --respawn --transpile-only src/main.ts",
"build": "tsc", "build": "tsc",
"build:watch": "tsc --watch", "build:watch": "tsc --watch",
"postbuild": "node ./scripts/post-build.mjs",
"start": "node dist/main.js", "start": "node dist/main.js",
"start:prod": "NODE_ENV=production node dist/main.js", "start:prod": "NODE_ENV=production node dist/main.js",
"debug": "node --inspect -r ts-node/register src/main.ts", "debug": "node --inspect -r ts-node/register src/main.ts",

View File

@ -0,0 +1,33 @@
import fs from "node:fs";
import process from "node:process";
import fsPath from "node:path";
function createDirIfExists(filePath) {
if (!fs.existsSync(filePath)) {
fs.mkdirSync(filePath, { recursive: true })
}
}
function recreateDir(filePath) {
if (fs.existsSync(filePath)) {
fs.rmSync(filePath, { recursive: true, force: true });
}
fs.mkdirSync(filePath, { recursive: true });
}
const currentDir = process.cwd();
const sourceDist = fsPath.join(currentDir, 'dist');
// 如果源目录不存在则报错
if (!fs.existsSync(sourceDist)) {
throw new Error(`Source directory not found: ${sourceDist}`)
}
// electron目录
const electronOpenMcpSdkPath = fsPath.join(currentDir, '..', 'software', 'openmcp-sdk');
createDirIfExists(electronOpenMcpSdkPath);
const electronServicePath = fsPath.join(electronOpenMcpSdkPath, 'service');
recreateDir(electronServicePath);
fs.cpSync(sourceDist, electronServicePath, { recursive: true })

View File

@ -1,5 +1,5 @@
import { app, BrowserWindow, ipcMain } from 'electron'; import { app, BrowserWindow, ipcMain } from 'electron';
import * as OpenMCPService from '@openmcp/service'; import * as OpenMCPService from '../openmcp-sdk/service';
import * as path from 'path'; import * as path from 'path';
import { ElectronIPCLike, getInitConnectionOption, ILaunchSigature, updateConnectionOption } from './util'; import { ElectronIPCLike, getInitConnectionOption, ILaunchSigature, updateConnectionOption } from './util';