ecosystem.config.js
module.exports = {
apps: [{
name: 'sku-check-skill',
script: 'server.js',
cwd: '/root/DW-Agents/sku-check-skill',
env: {
PORT: 9963,
NODE_ENV: 'production'
},
max_memory_restart: '300M',
autorestart: true
}]
};