You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pm2.json 319B

1234567891011121314
  1. {
  2. "name": "webex-collab-dev",
  3. "script": "./dist/index.js",
  4. "watch": ["src/"],
  5. "ignore_watch": ["node_modules", "public"],
  6. "autorestart": false,
  7. "exec_mode": "fork_mode",
  8. "instances": 1,
  9. "env": {
  10. "NODE_ENV": "development",
  11. "TZ": "Europe/London"
  12. },
  13. "node_args": ["--inspect=127.0.0.1:9320"]
  14. }