← back to Fashion Style Guides

ecosystem.config.js

11 lines

module.exports = {
  apps: [{
    name: 'fashion-style-guides',
    script: 'server.js',
    cwd: __dirname,
    env: { PORT: 9826, NODE_ENV: 'production' },
    max_memory_restart: '300M',
    autorestart: true,
  }],
};