picluster/picluster-pm2.config-example.json

30 lines
650 B
JSON
Raw Normal View History

2021-08-25 08:44:55 -06:00
{
"apps": [
{
"name" : "server",
"script" : "server.js",
"cwd" : "/picluster/server",
"watch" : true,
"env": {
"PICLUSTER_CONFIG": "/picluster/config.json"
}
},{
"name" : "agent",
"script" : "agent.js",
"cwd" : "/picluster/agent",
"watch" : true,
"env": {
"PICLUSTER_CONFIG": "/picluster/config.json"
}
},{
"name" : "webconsole",
"script" : "webconsole.js",
"cwd" : "/picluster/web",
"watch" : true,
"env": {
"PICLUSTER_CONFIG": "/picluster/config.json"
}
}
]
}