5642fb4fa3
- cwd: ~/.sanguo_projects/sanguo_llmwiki (安装目录) - script: python3 (明确使用 python3) - WIKI_INDEX_PATH: 使用绝对路径 Co-Authored-By: Claude Dev <noreply@anthropic.com>
19 lines
478 B
JavaScript
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'
|
|
}
|
|
}]
|
|
};
|