picluster/picluster-pm2.config-example.json
Verita84 48111c89c0 fix
2021-08-25 08:44:55 -06:00

30 lines
650 B
JSON

{
"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"
}
}
]
}