pm2/examples/process-file/process.json
2016-09-29 17:16:24 +02:00

25 lines
542 B
JSON

{
apps : [{
name : 'HTTP-API',
script : 'http.js',
exec_mode : 'cluster',
instances : 'max',
max_memory_restart : '260M',
ignore_watch : ['node_modules'],
watch : true,
env : {
NODE_ENV : 'normal'
},
env_production : {
NODE_ENV : 'production'
}
}, {
name : 'Worker',
script : 'worker.js'
}, {
name : 'Checks',
script : 'connection_check.sh'
}]
}