all repos — caroster @ eacae3b5757ee863358e7e3e52a5b6126422d67f

[Octree] Group carpool to your event https://caroster.io

ecosystem.config.js (view raw)

 1module.exports = {
 2  apps: [
 3    {
 4      name: "strapi",
 5      cwd: "backend/",
 6      script: "yarn",
 7      args: "start",
 8      interpreter: "sh",
 9      restart_delay: 10000,
10      max_restarts: 10,
11    },
12    {
13      name: "next",
14      cwd: "frontend/",
15      script: "yarn",
16      args: "start",
17      interpreter: "sh",
18      restart_delay: 10000,
19    },
20  ],
21};