module.exports = { apps: [ { name: 'binglogyblog-api', cwd: './apps/api', script: 'dist/main', interpreter: 'bun', // Use Bun runtime instances: 1, autorestart: true, watch: false, max_memory_restart: '1G', env: { NODE_ENV: 'production', }, env_production: { NODE_ENV: 'production', }, }, ], };