99AI/pm2.conf.json

17 lines
366 B
JSON
Raw Permalink Normal View History

2024-01-17 09:22:28 +08:00
{
"apps": {
2024-03-15 17:40:19 +08:00
"name": "99AI",
2024-01-17 09:22:28 +08:00
"script": "./dist/main.js",
"watch": true,
2024-07-31 14:12:56 +08:00
"ignore_watch": ["node_modules", "logs", "public/file"],
2024-01-17 09:22:28 +08:00
"env": {
"TZ": "Asia/Shanghai"
},
"instances": 1,
"error_file": "logs/err.log",
"out_file": "logs/out.log",
"log_date_format": "YYYY-MM-DD HH:mm:ss",
"max_memory_restart": "2000M"
}
}