module.exports = { apps: [ { name: 'charging-station-mock', script: 'server.js', interpreter: 'bun', instances: 1, autorestart: true, watch: false, max_memory_restart: '500M', env: { NODE_ENV: 'development', PORT: 3100, }, env_production: { NODE_ENV: 'production', PORT: 3100, }, }, ], };