Installation
Homebrew (macOS, Linux)
Section titled “Homebrew (macOS, Linux)”brew install agent-receipts/tap/dashboardPrebuilt binaries
Section titled “Prebuilt binaries”Binaries for darwin/linux (amd64, arm64) are attached to each GitHub release.
Install with Go
Section titled “Install with Go”go install github.com/agent-receipts/dashboard/cmd/dashboard@latestBuild from source
Section titled “Build from source”git clone https://github.com/agent-receipts/dashboard.gitcd dashboardmake buildIf you use the standard per-user path (~/.local/share/agent-receipts/receipts.db), no flags are needed:
dashboardThen open http://localhost:8080 in your browser.
Options
Section titled “Options”| Flag | Default | Description |
|---|---|---|
-db | ~/.local/share/agent-receipts/receipts.db | Path to a receipt SQLite database |
-port | 8080 | Port to serve on |
Example
Section titled “Example”# Standard local install — no flags requireddashboard
# Point at a custom databasedashboard -db ./receipts.db
# Use a custom portdashboard -port 9090