mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-15 19:44:24 +00:00
support CLAUDE_CONFIG_DIR environment variable
Respects CLAUDE_CONFIG_DIR if set, falls back to ~/.claude. Closes #3.
This commit is contained in:
parent
490130e32e
commit
f6cc68a7d4
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@ import type {
|
|||
import { classifyTurn } from './classifier.js'
|
||||
|
||||
function getClaudeDir(): string {
|
||||
return join(homedir(), '.claude')
|
||||
return process.env['CLAUDE_CONFIG_DIR'] || join(homedir(), '.claude')
|
||||
}
|
||||
|
||||
function getProjectsDir(): string {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue