/** * ═══════════════════════════════════════════════════════════ * 铸渊 · 算力汇聚调度池 · PM2生态配置 * ═══════════════════════════════════════════════════════════ */ module.exports = { apps: [{ name: 'pool-agent', script: './index.js', cwd: __dirname, instances: 1, exec_mode: 'fork', env: { POOL_AGENT_PORT: '3960', POOL_POLL_INTERVAL: '30000', NODE_ENV: 'production' }, max_restarts: 10, restart_delay: 5000, watch: false, log_date_format: 'YYYY-MM-DD HH:mm:ss Z' }] };