(appName, instance)
| 266 | |
| 267 | // Helper to get instance-specific env file path |
| 268 | function getInstanceEnvFile(appName, instance) { |
| 269 | return __dirname + `/.instances/instance-${instance}/${appName}.env`; |
| 270 | } |
| 271 | |
| 272 | // Helper to get instance-specific ports |
| 273 | function getInstancePort(basePort, instance) { |