A self-hosted household ledger.
1# Desktop build (`deno task desktop:cef` / `deno task desktop`). Copy to `.env.desktop`.
2#
3# QUANTUM_TARGET=desktop switches vite.config.ts to the Deno adapter, whose
4# `.deno-deploy/server.ts` output `deno desktop` packages.
5# QUANTUM_MODE=local runs the embedded server in single-user mode.
6# QUANTUM_DESKTOP=1 makes the app read its chosen mode + display name from an
7# app-config file at runtime and show the first-launch mode-selection screen when
8# absent — instead of baking those into the binary.
9
10QUANTUM_TARGET=desktop
11QUANTUM_MODE=local
12QUANTUM_DESKTOP=1
13
14# Where the local database (and the quantum-desktop.json app-config beside it)
15# live. Defaults to the OS app-data dir if unset.
16DB_PATH=./data/desktop-spike.db