Latest Release | Quick Start | Wiki
Helius is a local first personal finance tracker with a Rust CLI/TUI and SQLite storage. It runs as a single binary and keeps data in one local database file.
Supported targets: Windows x86_64 and Linux x86_64.
- Full-screen terminal UI
- Direct CLI commands
- SQLite storage in a single local database
- Accounts, categories, income, expense, and transfer transactions
- Recurring rules, reconciliation, budgets, and cash-flow planning
- JSON output for scripting and CSV export for reporting
- Open the GitHub Releases page.
- Download the archive for your platform:
- Windows x86_64:
helius-v0.1.4-windows-x86_64.zip - Linux x86_64:
helius-v0.1.4-linux-x86_64.tar.gz
- Windows x86_64:
- Extract the archive into a folder you keep for apps or tools.
- Launch the binary for your platform:
.\helius.exe./heliusOn first run, if no database exists, Helius prompts for a 3-letter currency code and initializes the default database for the current platform.
Requirements:
- Rust stable toolchain
- Windows or Linux
Clone the repository, then build:
cargo build --releaseThe compiled binary is written to one of:
target\release\helius.exe
target/release/helius
cargo install --path .The container stores its database at /data/tracker.db.
Build the image locally:
docker build -t helius .Create a named volume and start Helius:
docker volume create helius-data
docker run --rm -it -v helius-data:/data heliusRun direct commands the same way:
docker run --rm -v helius-data:/data helius balance
docker run --rm -v helius-data:/data helius tx list --limit 20Use -it for the TUI or interactive shell.
Start the terminal UI:
heliusOpen the guided shell:
helius shellRun direct commands:
helius init --currency USD
helius balance
helius tx list --limit 20If you are launching a binary directly instead of using PATH:
.\helius.exe init --currency USD
.\helius.exe balance./helius init --currency USD
./helius balanceOn first run, helius can initialize the database automatically. You can also set it up explicitly:
helius init --currency USD
helius account add Checking --type checking --opening-balance 1000.00
helius category add Salary --kind income
helius category add Groceries --kind expense
helius tx add --type income --amount 2500.00 --date 2026-03-01 --account Checking --category Salary --payee Employer
helius tx add --type expense --amount 42.50 --date 2026-03-02 --account Checking --category Groceries --payee MarketTab/Shift+Tab: switch top-level panelsj/kor arrows: move selectionn: create a new item in the active panele: edit the selected itemd: archive, delete, reset, or restore depending on panel contextEnter: open, activate, or post the selected entry?: toggle helpq: quit
Forms:
Tab/Shift+Tab: move between fieldsEnter,Ctrl+S, orF2: saveEsc: cancel
Accounts and categories:
helius account add "Cash" --type cash
helius account list
helius category add "Housing" --kind expense
helius category listTransactions:
helius tx add --type expense --amount 290.00 --date 2026-03-06 --account Cash --category Housing --payee Rent
helius tx list --limit 25
helius tx edit 12 --note "corrected note"
helius tx delete 12
helius tx restore 12Budgets and summaries:
helius budget set Groceries --month 2026-03 --amount 300.00 --account Checking
helius budget status 2026-03
helius summary month 2026-03
helius summary range --from 2026-03-01 --to 2026-03-31Recurring rules:
helius recurring add "Monthly Rent" --type expense --amount 290.00 --account Cash --category Housing --cadence monthly --day-of-month 6 --start-on 2026-03-17
helius recurring list
helius recurring runPlanning:
helius forecast show
helius forecast bills
helius scenario add "Recovery Plan"
helius goal add "Cash Floor" --kind balance-target --account Checking --minimum-balance 100.00Default database locations:
%LOCALAPPDATA%\Helius\tracker.db
~/.local/share/helius/tracker.db
Notes:
- Windows uses
%LOCALAPPDATA%\Helius\tracker.db. - Linux uses the platform-local application data directory from
directories::ProjectDirs, commonly~/.local/share/helius/tracker.db.
Overrides:
--db <path>HELIUS_DB_PATH
cargo test
cargo build --releaseCopyright 2026 Kostas. This project is released under the GNU Affero General Public License v3.0. See LICENSE.
