OrchestratorTracker/client/ecosystem.config.js
2023-11-03 01:59:23 +01:00

19 lines
381 B
JavaScript

module.exports = {
apps: [
{
name: "client-orchestrator-prober",
script: "./src/client.js",
cwd: "/orchTest/client",
env_production: {
NODE_ENV: "production"
},
env_development: {
NODE_ENV: "development"
},
env_local: {
NODE_ENV: "local"
}
}
]
}