Local-only • Open source
Agressively straight-forward
open source financial tracking.
Secure and private tracking focused on a radically simple user experience.
Net Worth £350,452
Assets £559,652
Liabilities -£209,200
Your data stays yours
Everything lives in a local SQLite database on your machine. Do what you want with it.
tally.db ~/Library/Application Support/
Get in. Get out.
Optimised for minimal interaction. Open tally, update balances, move on.
~5 min/month
Update balances
Categorize transactions
Link bank accounts
Review budgets
Check yourself it's open source.
Don't trust us if you don't want to. Look at the code and see, everything is open.
db.ts // The entire data layer
import Database from '@tauri-apps/plugin-sql';
export async function getDb() {
return Database.load('sqlite:tally.db');
}
// No fetch(). No tracking. Just SQL.
View source