module.exports = { apps: [ { name: 'horux-api', cwd: '/root/Horux/apps/api', script: 'pnpm', args: 'dev', interpreter: 'none', watch: false, autorestart: true, restart_delay: 10000, max_restarts: 3, kill_timeout: 5000, env: { NODE_ENV: 'development', PORT: 4000 } }, { name: 'horux-web', cwd: '/root/Horux/apps/web', script: 'pnpm', args: 'dev', interpreter: 'none', watch: false, autorestart: true, restart_delay: 10000, max_restarts: 3, kill_timeout: 5000, env: { NODE_ENV: 'development', PORT: 3000 } } ] };