hsa-app/internal/web/templates/export.html
Jean-Michel Tremblay 8b7252dad4 Initial commit: HSA receipt tracker
Go app for capturing and archiving HSA-eligible receipts: OIDC/PKCE auth
against Authelia, SQLite storage with dual-write (filesystem + DB blob),
mobile-first upload, and DB export.

Adds AI receipt classification: a config.json catalog of people and
categories (seeded into the DB on startup), a prompt builder that derives
name-order/initial variants from the data (with same-surname ambiguity
handling), and an Anthropic tool-use client behind POST /classify. Tests
run against a mock endpoint; a live integration test is env-gated to the
cheapest model.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-17 21:40:12 -04:00

9 lines
505 B
HTML

{{define "title"}}Export{{end}}
{{define "content"}}
<h1>Export database</h1>
<a class="button blue" href="/export/db?blobs=true">Download full DB (with images)</a>
<a class="button blue" href="/export/db?blobs=false">Download metadata only (no images)</a>
<p><small>The full DB is a complete, self-contained snapshot — metadata and every
receipt image in one SQLite file. Metadata-only omits the image blobs (~99% of the size).</small></p>
<p style="text-align:center"><a href="/">Back</a></p>
{{end}}