MCPcopy Create free account
hub / github.com/EvoMap/evolver / getClaudeSettingsFile

Function getClaudeSettingsFile

src/ops/lifecycle.js:162–168  ·  view source on GitHub ↗
(env)

Source from the content-addressed store, hash-verified

160}
161
162function getClaudeSettingsFile(env) {
163 var e = env || process.env;
164 var explicit = String(e.CLAUDE_SETTINGS_FILE || e.EVOMAP_CLAUDE_SETTINGS_FILE || '').trim();
165 if (explicit) return explicit;
166 var home = e.HOME || os.homedir();
167 return home ? path.join(home, '.claude', 'settings.json') : null;
168}
169
170function getCodexConfigFile(env) {
171 var e = env || process.env;

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected