This repository has been archived on 2024-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
reactive-resume-docker/ecosystem.config.js

15 lines
240 B
JavaScript
Raw Normal View History

2023-01-04 14:08:00 +01:00
module.exports = [
{
2023-04-10 18:21:08 +02:00
script: "pnpm --filter server start",
2023-01-04 14:08:00 +01:00
cwd: "/app",
name: "server",
2023-06-29 14:57:02 +02:00
max_restarts: 3,
2023-01-04 14:08:00 +01:00
},
{
2023-04-10 18:21:08 +02:00
script: "pnpm --filter client start",
2023-01-04 14:08:00 +01:00
cwd: "/app",
name: "client",
2023-06-29 14:57:02 +02:00
max_restarts: 3,
2023-01-04 14:08:00 +01:00
},
];