mirror of
https://github.com/stronk-dev/OrchestratorTracker.git
synced 2025-07-05 10:55:09 +02:00
19 lines
381 B
JavaScript
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"
|
|
}
|
|
}
|
|
]
|
|
}
|