Problem
Port range hardcoded 5000-5100 (main.js lines 16-17). May conflict with other services using these ports.
Recommended Solution
Make ports configurable:
const DEFAULT_PORT = parseInt(process.env.DEVSHELL_DEFAULT_PORT || '5000', 10);
const MAX_SCAN_PORT = parseInt(process.env.DEVSHELL_MAX_PORT || '5100', 10);
Program Template
Suggested Labels
configuration, port-management, gssoc-eligible
EOF
)
Problem
Port range hardcoded 5000-5100 (main.js lines 16-17). May conflict with other services using these ports.
Recommended Solution
Make ports configurable:
Program Template
Suggested Labels
configuration, port-management, gssoc-eligible
EOF
)