mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
23 lines
603 B
JSON
23 lines
603 B
JSON
{
|
|
"apps" : [{
|
|
"exec_interpreter" : "node",
|
|
"exec_mode" : "cluster_mode",
|
|
"instances" : 0,
|
|
"log_date_format" : "YYYY-MM-DD HH:mm Z",
|
|
"max_memory_restart" : "160M",
|
|
"merge_logs" : true,
|
|
"name" : "hapi_playground",
|
|
"script" : "child.js",
|
|
"cwd" : "examples",
|
|
"node_args" : "--harmony",
|
|
"ignore_watch" : ["[\\/\\\\]\\./", "log"],
|
|
"watch" : true,
|
|
env : {
|
|
NODE_ENV : 'normal'
|
|
},
|
|
env_production : {
|
|
NODE_ENV : 'production'
|
|
}
|
|
}]
|
|
}
|