refactor(ApplicationContext): rename environment variable for clarity

- Changed the environment variable from "CLAUDE_CODE_VIEWER_CC_EXECUTABLE_PATH" to "GLOBAL_CLAUDE_DIR" for better understanding and usage within the application context.
This commit is contained in:
d-kimsuon
2025-10-18 17:41:21 +09:00
parent 90e260f11e
commit 277247aa4b

View File

@@ -9,7 +9,7 @@ const LayerImpl = Effect.gen(function* () {
const envService = yield* EnvService;
const globalClaudeDirectoryPath = yield* envService
.getEnv("CLAUDE_CODE_VIEWER_CC_EXECUTABLE_PATH")
.getEnv("GLOBAL_CLAUDE_DIR")
.pipe(
Effect.map((envVar) =>
envVar === undefined