{"id":51262554,"url":"https://github.com/georgebuilds/kino","last_synced_at":"2026-06-29T13:01:57.420Z","repository":{"id":357174076,"uuid":"1234985411","full_name":"georgebuilds/kino","owner":"georgebuilds","description":"WIP. Local-first personal finance desktop app. Synchronized accounts with sankey for free.","archived":false,"fork":false,"pushed_at":"2026-05-11T16:04:49.000Z","size":1065,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-11T18:10:53.882Z","etag":null,"topics":["go","golang","ofx","sankey","sqlite","typescript","vue3-typescript","wails"],"latest_commit_sha":null,"homepage":"","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/georgebuilds.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-05-10T22:23:08.000Z","updated_at":"2026-05-11T16:15:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/georgebuilds/kino","commit_stats":null,"previous_names":["georgebuilds/kino"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/georgebuilds/kino","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgebuilds%2Fkino","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgebuilds%2Fkino/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgebuilds%2Fkino/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgebuilds%2Fkino/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/georgebuilds","download_url":"https://codeload.github.com/georgebuilds/kino/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgebuilds%2Fkino/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34927687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-29T02:00:05.398Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","golang","ofx","sankey","sqlite","typescript","vue3-typescript","wails"],"created_at":"2026-06-29T13:01:56.531Z","updated_at":"2026-06-29T13:01:57.413Z","avatar_url":"https://github.com/georgebuilds.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kino\n\nA local-first personal finance desktop app built with Go, Vue 3, and Wails.\n\n## Features\n\n- **Multi-account tracking** — checking, savings, credit cards, investments, loans, crypto, cash\n- **Transaction management** — create, edit, categorize, reconcile, and filter transactions\n- **Import** — CSV and OFX/QFX file import with exact and fuzzy duplicate detection\n- **Budgets** — monthly, weekly, and annual budgets with optional rollover\n- **Cash flow** — Sankey diagram showing income sources flowing to expense categories\n- **Net worth** — 12 or 24-month history snapshots\n- **Goals** — savings goal tracking linked to accounts\n- **Local data** — all data lives in a single `.kino` SQLite file you own and control\n\n## Privacy\n\nNo accounts, no sync servers, no telemetry. Your `.kino` file can be stored anywhere — iCloud Drive, Dropbox, Google Drive, OneDrive, or just your local disk.\n\n## Development\n\n**Prerequisites:** Go 1.24+, Node 18+, [Wails v2](https://wails.io/docs/gettingstarted/installation)\n\n```bash\n# Install Wails CLI\ngo install github.com/wailsapp/wails/v2/cmd/wails@latest\n\n# Live development (hot reload)\nwails dev\n\n# Production build\nwails build\n```\n\nThe dev server also exposes a browser UI at `http://localhost:34115` with access to all Go methods via devtools.\n\n## Architecture\n\n| Layer | Technology |\n|-------|-----------|\n| Desktop shell | Wails v2 |\n| Backend | Go |\n| Frontend | Vue 3 + TypeScript + Vite + Tailwind CSS |\n| Database | SQLite (WAL mode, via `modernc.org/sqlite`) |\n| Charts | Chart.js |\n\n**Backend modules:**\n\n| File | Responsibility |\n|------|---------------|\n| `app.go` | DB lifecycle, file open/create/move, MRU tracking |\n| `app_accounts.go` | Account CRUD |\n| `app_transactions.go` | Transaction CRUD, filters, transfer pairs |\n| `app_categories.go` | Category CRUD (hierarchical) |\n| `app_budgets.go` | Budget CRUD with rollover logic |\n| `app_cashflow.go` | Sankey diagram data |\n| `app_networth.go` | Net worth history snapshots |\n| `app_summary.go` | Monthly aggregation (income, expenses, savings) |\n| `app_import.go` | CSV/OFX import, duplicate detection |\n| `internal/db/` | SQLite connection, schema migrations, all queries |\n| `internal/models/` | Shared data types |\n| `internal/importer/` | CSV and OFX parsers |\n\n**Key conventions:**\n- All monetary values are stored as `int64` cents (no floating-point)\n- Transfer transactions are linked in pairs via `TransferPairID`\n- Schema migrations are idempotent and version-gated via `kino_meta`\n- The frontend calls Go methods directly via Wails RPC bindings\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorgebuilds%2Fkino","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorgebuilds%2Fkino","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorgebuilds%2Fkino/lists"}