mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
25 lines
542 B
JSON
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'
|
|
}]
|
|
}
|