Show HN: TrueLedger – a local-first personal finance app with no cloud back end

trueledger.satyakommula.com

4 points by satyakommula 10 hours ago

Hi HN,

I built TrueLedger because I didn’t want a personal finance app that requires a cloud account or bank credential access just to work.

TrueLedger is a local-first personal finance app. All data stays on the user’s device and works fully offline.

Technical choices: - SQLite for local storage across platforms - SQLCipher (AES-256) for encrypted databases - Web version runs entirely client-side using SQLite WASM - Encrypted, deterministic JSON backups for portability without a server

Demo (runs fully client-side): https://trueledger.satyakommula.com

Source: https://github.com/satyakommula96/trueledger

Happy to answer questions about local-first design or encryption tradeoffs.

satyakommula an hour ago

One design choice worth clarifying: I intentionally avoided any backend. Multi-device usage is handled via encrypted, deterministic backups instead of sync, which keeps the threat model small and predictable.