← back to Ventura Bus 3d

ecosystem.config.js

19 lines

module.exports = {
  apps: [
    {
      name: 'ventura-bus-3d',
      script: 'src/server.js',
      cwd: __dirname,
      instances: 1,
      exec_mode: 'fork',
      autorestart: true,
      watch: false,
      max_memory_restart: '512M',
      env: {
        NODE_ENV: 'production',
        PORT: 9783
      }
    }
  ]
};