aboutsummaryrefslogtreecommitdiffstats
path: root/cli/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/src/config.ts')
-rw-r--r--cli/src/config.ts17
1 files changed, 2 insertions, 15 deletions
diff --git a/cli/src/config.ts b/cli/src/config.ts
index a4c68a4..a00552d 100644
--- a/cli/src/config.ts
+++ b/cli/src/config.ts
@@ -24,6 +24,7 @@ export type Config = {
fileId: string
}
mappings: AccountMapping[]
+ anthropicApiKey?: string
}
export function loadConfig(): Config {
@@ -36,18 +37,4 @@ export function loadConfig(): Config {
export function saveConfig(config: Config): void {
mkdirSync(CONFIG_DIR, { recursive: true })
writeFileSync(CONFIG_PATH, JSON.stringify(config, null, 2))
-}
-
-const exampleConfig: Config = {
- sb1: {
- clientId: "YOUR_CLIENT_ID",
- clientSecret: "YOUR_CLIENT_SECRET",
- finInst: "YOUR_FIN_INST"
- },
- actual: {
- host: "http://localhost:5006",
- password: "your-password",
- fileId: "your-budget-file-id"
- },
- mappings: []
-}
+} \ No newline at end of file