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

13 lines
198 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-04-10 18:21:08 +02:00
script: "pnpm --filter client start",
2023-01-04 14:08:00 +01:00
cwd: "/app",
name: "client",
},
];