mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
24 lines
470 B
JSON
24 lines
470 B
JSON
[{
|
|
"name" : "echo",
|
|
"script" : "./echo.js",
|
|
"instances" : "1",
|
|
"env_production" : {
|
|
"NODE_ENV" : "production",
|
|
"TOTO" : "heymoto"
|
|
},
|
|
"env_test" : {
|
|
"NODE_ENV" : "test",
|
|
"TOTO" : "heyamota"
|
|
}
|
|
},{
|
|
"name" : "child",
|
|
"script" : "./child.js",
|
|
"instances" : "1",
|
|
"error_file" : "./child-err.log",
|
|
"out_file" : "./child-out.log"
|
|
},{
|
|
"name" : "api-2",
|
|
"script" : "./server.js",
|
|
"instances" : "2"
|
|
}]
|