← back to Prestige Car Wash

ecosystem.config.cjs

13 lines

module.exports = {
  apps: [
    {
      name: 'prestige-car-wash',
      script: 'server.js',
      cwd: __dirname,
      env: { NODE_ENV: 'production', PORT: 9808 },
      max_memory_restart: '300M',
      watch: false
    }
  ]
};