refactor: replace device auth flow with effect

This commit is contained in:
Max Koon
2025-11-17 17:17:54 -05:00
parent 9e11455db1
commit f17daa2c78
9 changed files with 617 additions and 190 deletions

9
apps/tui/src/config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { join } from "path";
import { homedir } from "os";
const PATH = join(homedir(), ".local", "share", "money");
const AUTH_PATH = join(PATH, "auth.json");
export const config = {
authPath: AUTH_PATH,
};