← back to Abrams Report

ecosystem.config.js

17 lines

module.exports = {
  apps: [
    {
      name: 'abrams-report',
      script: 'server.js',
      cwd: '/root/Projects/Designer-Wallcoverings/DW-Websites/abrams-report',
      env: {
        PORT: 9779,
        NODE_ENV: 'production',
      },
      max_memory_restart: '300M',
      restart_delay: 3000,
      autorestart: true,
    },
  ],
};