pm2.json 230 B

12345678910111213
  1. {
  2. "apps": [
  3. {
  4. "name": "WebApp",
  5. "exec_mode": "cluster",
  6. "instances": 1,
  7. "script": "./node_modules/next/dist/bin/next",
  8. "cwd": "/app/web",
  9. "args": "start"
  10. }
  11. ]
  12. }