Commands Reference
Quick reference for common tasks.
Development
Section titled “Development”bun run dev # Start dev serverbun run build # Build for productionbun run preview # Preview production build
bun run docs:dev # Start docs dev serverbun run docs:build # Build docsQuality gates
Section titled “Quality gates”Run before every commit:
bun run lint:fixbun run stylelint:fixbun run format:fixbun run typecheckDatabase
Section titled “Database”bun run db:generate # Generate migrationbun run db:migrate # Apply migrationsbun run db:push # Push schema (dev only)bun run db:seed # Seed demo data (3 months default)bun run db:seed --months=6 # Seed 6 months of databun run db:seed --transactions=5000 # Add 5k extra transactionsbun run db:reset # Reset and seedTesting
Section titled “Testing”bun run test # Unit testsbun run test:watch # Watch modebun run test:e2e # E2E testsbun run test:e2e:ui # E2E with UIbun run aw --help
# Workspacebun run aw workspace create --name "Name" --email admin@example.combun run aw workspace listbun run aw workspace invite --workspace-id <id> --email <email>
# Resourcesbun run aw transactions create|get|list|update|deletebun run aw accounts create|get|list|update|deletebun run aw budgets create|get|list|update|delete
# Aliasesbun run aw tx add|show|ls|edit|rmbun run aw acc add|show|ls|edit|rmbun run aw bdg set|show|ls|edit|rmCLI options
Section titled “CLI options”# Target environmentbun run aw db migrate --target sqlite|d1|d1-local
# JSON outputbun run aw transactions list --workspace-id <id> --json
# Skip confirmationbun run aw tx rm --workspace-id <id> --id <id> --yesSee COMMANDS.md in the repository root for the full catalog.