Files
phonendo/ecosystem.config.js
2026-05-22 09:58:02 +02:00

30 lines
640 B
JavaScript

module.exports = {
apps: [{
name: "manager",
script: "./manager/index.js",
watch: true
},
{
name: "verifier",
script: "./verifier/index.js",
watch: true
},
{
name: "storage",
script: "./storage/index.js",
ignore_watch: ["phonendo_db"],
watch: true
},
{
name: "reader",
script: "./reader/index.js",
watch: true
},
{
name: "publisher",
script: "./publisher/index.js",
watch: true
}
]
}