ecosystem.config.cjs 368 B

12345678910111213141516
  1. module.exports = {
  2. apps: [
  3. {
  4. name: "cashBook",
  5. script: "./app.js",
  6. error_file: "./pm2Log/err.log",
  7. out_file: "./pm2Log/out.log",
  8. watch: true,
  9. max_restarts: 20,
  10. ignore_watch: ["node_modules"],
  11. interpreter: "/Users/honghaitao/.volta/tools/image/node/22.2.0/bin/node", // 指定 Node.js 版本路径
  12. },
  13. ],
  14. };