()
| 73 | } |
| 74 | |
| 75 | function _codexConfigPath() { |
| 76 | if (process.env.CODEX_CONFIG_FILE || process.env.EVOMAP_CODEX_CONFIG_FILE) { |
| 77 | return process.env.CODEX_CONFIG_FILE || process.env.EVOMAP_CODEX_CONFIG_FILE; |
| 78 | } |
| 79 | const home = process.env.HOME || os.homedir(); |
| 80 | return home ? path.join(home, '.codex', 'config.toml') : null; |
| 81 | } |
| 82 | |
| 83 | function _codexConfigExpectsProxy() { |
| 84 | const file = _codexConfigPath(); |
no outgoing calls
no test coverage detected