ecosystem.config.js
module.exports = {
apps: [{
name: 'dw-cadence-next2',
script: 'server.js',
cwd: __dirname,
env: {
PORT: '9764', // fixed port — URL stays stable across restarts
BASIC_USER: 'admin',
BASIC_PASS: 'DW2024!',
},
autorestart: true,
max_restarts: 20,
restart_delay: 2000,
max_memory_restart: '200M',
}],
};