4e21ca937a
Deploy Documentation / deploy (push) Has been cancelled
Canary / Prepare Version (push) Has been cancelled
Canary / build-cli (push) Has been cancelled
Canary / Upload Install Script (push) Has been cancelled
Canary / bundle-desktop (push) Has been cancelled
Canary / bundle-desktop-intel (push) Has been cancelled
Canary / bundle-desktop-linux (push) Has been cancelled
Canary / bundle-desktop-windows (push) Has been cancelled
Canary / bundle-desktop-windows-cuda (push) Has been cancelled
Canary / Release (push) Has been cancelled
Unused Dependencies / machete (push) Has been cancelled
CI / changes (push) Has been cancelled
CI / Check Rust Code Format (push) Has been cancelled
CI / Build and Test Rust Project (push) Has been cancelled
CI / Build Rust Project on Windows (push) Has been cancelled
CI / Check MSRV (push) Has been cancelled
CI / Lint Rust Code (push) Has been cancelled
CI / Check Generated Schemas are Up-to-Date (push) Has been cancelled
CI / Test and Lint Electron Desktop App (push) Has been cancelled
CI / H5 Plaza Tests and Build (push) Has been cancelled
Live Provider Tests / check-fork (push) Has been cancelled
Live Provider Tests / changes (push) Has been cancelled
Live Provider Tests / Build Binary (push) Has been cancelled
Live Provider Tests / Smoke Tests (push) Has been cancelled
Live Provider Tests / Smoke Tests (Code Execution) (push) Has been cancelled
Live Provider Tests / Compaction Tests (push) Has been cancelled
Live Provider Tests / goose server HTTP integration tests (push) Has been cancelled
Publish Ask AI Bot Docker Image / docker (push) Has been cancelled
Publish Docker Image / docker (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Fork goose with custom MCP widgets, platform extensions (aider, git, web, search), MindSpace H5 backend/frontend, Plaza/Ops UIs, and deploy scripts for tkmind.cn. Co-authored-by: Cursor <cursoragent@cursor.com>
84 lines
2.4 KiB
JavaScript
Executable File
84 lines
2.4 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { spawn } from 'node:child_process';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
const root = path.join(path.dirname(fileURLToPath(import.meta.url)), '..');
|
|
const portalPort = Number(process.env.H5_PORT ?? 8081);
|
|
const portalUrl = `http://127.0.0.1:${portalPort}`;
|
|
|
|
function loadEnvFile(filePath) {
|
|
if (!fs.existsSync(filePath)) return;
|
|
for (const line of fs.readFileSync(filePath, 'utf8').split('\n')) {
|
|
const trimmed = line.trim();
|
|
if (!trimmed || trimmed.startsWith('#')) continue;
|
|
const eq = trimmed.indexOf('=');
|
|
if (eq < 0) continue;
|
|
const key = trimmed.slice(0, eq).trim();
|
|
const value = trimmed.slice(eq + 1).trim();
|
|
if (!process.env[key]) process.env[key] = value;
|
|
}
|
|
}
|
|
|
|
loadEnvFile(path.join(root, '../../.env.local'));
|
|
loadEnvFile(path.join(root, '.env'));
|
|
|
|
function spawnChild(command, args, label) {
|
|
const child = spawn(command, args, {
|
|
cwd: root,
|
|
env: process.env,
|
|
stdio: 'inherit',
|
|
});
|
|
child.on('exit', (code, signal) => {
|
|
if (signal) return;
|
|
if (code && code !== 0) {
|
|
console.error(`[${label}] exited with code ${code}`);
|
|
shutdown(code ?? 1);
|
|
}
|
|
});
|
|
return child;
|
|
}
|
|
|
|
let server;
|
|
let vite;
|
|
let stopping = false;
|
|
|
|
function shutdown(code = 0) {
|
|
if (stopping) return;
|
|
stopping = true;
|
|
server?.kill('SIGTERM');
|
|
vite?.kill('SIGTERM');
|
|
setTimeout(() => process.exit(code), 300);
|
|
}
|
|
|
|
process.on('SIGINT', () => shutdown(0));
|
|
process.on('SIGTERM', () => shutdown(0));
|
|
|
|
async function waitForPortal(retries = 40) {
|
|
for (let i = 0; i < retries; i += 1) {
|
|
try {
|
|
const res = await fetch(`${portalUrl}/auth/status`);
|
|
if (res.ok) return;
|
|
} catch {
|
|
// portal still starting
|
|
}
|
|
await new Promise((resolve) => setTimeout(resolve, 250));
|
|
}
|
|
throw new Error(`Portal 未在 ${portalUrl} 启动,请检查 MySQL 配置与 ${portalPort} 端口`);
|
|
}
|
|
|
|
console.log('==> 启动 portal (server.mjs)...');
|
|
server = spawnChild('node', ['server.mjs'], 'portal');
|
|
|
|
try {
|
|
await waitForPortal();
|
|
console.log(`==> Portal 就绪: ${portalUrl}`);
|
|
console.log('==> 启动 Vite @ http://127.0.0.1:5173');
|
|
console.log('==> 我的空间 UI 预览: http://127.0.0.1:5173/?preview=mindspace');
|
|
vite = spawnChild('npx', ['vite'], 'vite');
|
|
} catch (err) {
|
|
console.error(err instanceof Error ? err.message : err);
|
|
shutdown(1);
|
|
}
|