all repos — caroster @ 0e7cec612a19f2356c6f03a89ca8eb1c1b698b97

[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: "bash",
 9      restart_delay: 10000,
10      max_restarts: 10,
11    },
12    {
13      name: "next",
14      cwd: "frontend/",
15      script: "yarn",
16      args: "start",
17      interpreter: "bash",
18      restart_delay: 10000,
19    },
20  ],
21};