From 5642fb4fa377c9336f3b95e08036eb46b1354e9a Mon Sep 17 00:00:00 2001 From: claude_dev Date: Fri, 26 Jun 2026 12:35:14 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=E9=83=A8=E7=BD=B2?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=8C=87=E5=90=91=E5=AE=89=E8=A3=85=E7=9B=AE?= =?UTF-8?q?=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - cwd: ~/.sanguo_projects/sanguo_llmwiki (安装目录) - script: python3 (明确使用 python3) - WIKI_INDEX_PATH: 使用绝对路径 Co-Authored-By: Claude Dev --- ecosystem.config.cjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs index aece6bf..3bcf85a 100644 --- a/ecosystem.config.cjs +++ b/ecosystem.config.cjs @@ -1,9 +1,9 @@ module.exports = { apps: [{ name: 'wiki-mcp', - script: 'python', + script: 'python3', args: '-m mcp_server.main', - cwd: '/Users/chufeng/.openclaw/sanguo_projects/sanguo_llmwiki', + cwd: '/Users/chufeng/.sanguo_projects/sanguo_llmwiki', // 安装目录 instances: 1, autorestart: true, watch: false, @@ -11,7 +11,7 @@ module.exports = { env: { PYTHONUNBUFFERED: '1', WIKI_VAULT_PATH: '/Volumes/KnowledgeBase/wiki-vault', - WIKI_INDEX_PATH: '~/.sanguo-llmwiki/index.db', + WIKI_INDEX_PATH: '/Users/chufeng/.sanguo-llmwiki/index.db', LOG_LEVEL: 'INFO' } }]