pm2/examples/process.json
Patrick Hogan 697bd60217 Update one incorrect type and one deprecated value
watch parameter per documentation is a boolean.  Source code shows it to be as well.  The value was a string "truee"
instances parameter per deprecation warnings explains to use 0 instead of max.
2015-02-07 23:33:20 -08:00

17 lines
496 B
JSON

{
"apps" : [{
"exec_interpreter" : "node",
"exec_mode" : "cluster_mode",
"instances" : 0,
"log_date_format" : "YYYY-MM-DD HH:mm Z",
"max_memory_restart" : "160",
"merge_logs" : true,
"name" : "hapi_playground",
"script" : "child.js",
"cwd" : "examples",
"node_args" : "--harmony",
"ignoreWatch" : ["[\\/\\\\]\\./", "log"],
"watch" : true
}]
}