LabelVault is a mobile-first labeling system for household storage with QR-first labels, short manual codes, and a local print agent.
Install dependencies:
bun installStart the dev server (hot reload):
bun devBuild for production:
bun run buildRun the production server:
bun startFor Bun conventions and project defaults, see docs/BUN.md.
The admin CLI now uses yargs for argument parsing and help output.
Show help:
bun run lvadmin --helpRun migrations:
DATABASE_URL=postgres://... bun run lvadmin db migrateSeed a starter household and owner:
DATABASE_URL=postgres://... bun run lvadmin db seedOverride seed values via flags:
DATABASE_URL=postgres://... bun run lvadmin db seed \
--household-name "My Household" \
--owner-email me@example.com