← back to 4square Agentabrams

ecosystem.config.js

18 lines

module.exports = {
  apps: [{
    name: '4square-agentabrams',
    script: 'server.js',
    cwd: __dirname,
    env: {
      NODE_ENV: 'production',
      PORT: 9702,
      BASIC_AUTH_USER: 'admin',
      BASIC_AUTH_PASS: 'DWShowroom2026',
      CATALOG_UPSTREAM: 'https://thesetdecorator.com',
    },
    max_memory_restart: '256M',
    autorestart: true,
    watch: false,
  }],
};