quotely / ecosystem.config.js
Ditzzy AF
feat(README.md): enhance README with detailed project info and quick start guide
ff883f5
Raw
History Blame Contribute Delete
331 Bytes
module.exports = {
apps: [{
name: 'quote-api',
script: './index.js',
max_memory_restart: '2500M',
instances: 3,
exec_mode: 'cluster',
watch: true,
ignore_watch: ['node_modules', 'assets'],
env: {
NODE_ENV: 'development'
},
env_production: {
NODE_ENV: 'production'
}
}]
}