← back to Designerrepresentatives

ecosystem.config.js

17 lines

module.exports = {
  apps: [
    {
      name: 'designerrepresentatives',
      script: 'server.js',
      cwd: __dirname,
      env: {
        NODE_ENV: 'production',
        PORT: 9924,
        PUBLIC_URL: 'https://designerrepresentatives.com',
      },
      max_memory_restart: '300M',
      time: true,
    },
  ],
};