mirror of
https://github.com/stronk-dev/OrchestratorTracker.git
synced 2025-07-05 19:05:10 +02:00
19 lines
369 B
JavaScript
19 lines
369 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "orchProber",
|
|
script: "./src/orchProber.js",
|
|
cwd: "/orchTest/client",
|
|
env_production: {
|
|
NODE_ENV: "production"
|
|
},
|
|
env_development: {
|
|
NODE_ENV: "development"
|
|
},
|
|
env_local: {
|
|
NODE_ENV: "local"
|
|
}
|
|
}
|
|
]
|
|
}
|