12345678910111213141516 |
- module.exports = {
- apps: [
- {
- name: "cashBook",
- script: "./app.js",
- error_file: "./pm2Log/err.log",
- out_file: "./pm2Log/out.log",
- watch: true,
- max_restarts: 20,
- ignore_watch: ["node_modules"],
- interpreter: "/Users/honghaitao/.volta/tools/image/node/22.2.0/bin/node", // 指定 Node.js 版本路径
- },
- ],
- };
|