Files
sanguo_llmwiki/ecosystem.config.cjs
claude_dev 5642fb4fa3 chore: 更新部署配置指向安装目录
- cwd: ~/.sanguo_projects/sanguo_llmwiki (安装目录)
- script: python3 (明确使用 python3)
- WIKI_INDEX_PATH: 使用绝对路径

Co-Authored-By: Claude Dev <noreply@anthropic.com>
2026-06-26 12:35:14 +08:00

19 lines
478 B
JavaScript

module.exports = {
apps: [{
name: 'wiki-mcp',
script: 'python3',
args: '-m mcp_server.main',
cwd: '/Users/chufeng/.sanguo_projects/sanguo_llmwiki', // 安装目录
instances: 1,
autorestart: true,
watch: false,
max_memory_restart: '500M',
env: {
PYTHONUNBUFFERED: '1',
WIKI_VAULT_PATH: '/Volumes/KnowledgeBase/wiki-vault',
WIKI_INDEX_PATH: '/Users/chufeng/.sanguo-llmwiki/index.db',
LOG_LEVEL: 'INFO'
}
}]
};