module.exports = { apps: [ { name: 'webapp', script: 'npx', args: 'wrangler pages dev dist --d1=webapp-production --local --ip 0.0.0.0 --port 3000', env: { NODE_ENV: 'development', PORT: 3000 }, watch: false, instances: 1, exec_mode: 'fork', autorestart: true, max_restarts: 5, min_uptime: '10s' } ] }