agmission/Others/scripts/maintainer-pm2.json

38 lines
715 B
JSON

{
"apps": [
{
"name": "maintainer",
"cwd": "/media/ssd1/maintainer/",
"script": "index.js",
"node_args": [
"--expose-gc",
"--max-old-space-size=1048",
"--nouse-idle-notification"
],
"exec_mode": "fork",
"instances": 1,
"env": {
"NODE_ENV": "production",
"DISPLAY": ":99",
"DEBUG": "agm:*,maintainer:*"
},
"watch": false,
"ignore_watch": [
"[\/\\]\\./",
"node_modules",
".tmp"
],
"merge_logs": false,
"max_restarts": 5,
"min_uptime": "24h",
},
{
"name": "Xvfb",
"interpreter": "none",
"script": "Xvfb",
"args": ":99"
}
]
}