Commands Reference
Quick reference for common tasks.
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
Run before every commit:
bun run lint:fixbun run stylelint:fixbun run format:fixbun run typecheckDatabase
bun run db:generate # Generate migrationbun run db:migrate # Apply migrationsbun run db:push # Push schema (dev only)bun run db:seed # Seed demo databun run db:reset # Reset and seedTesting
bun run test # Unit testsbun run test:watch # Watch modebun run test:e2e # E2E testsbun run test:e2e:ui # E2E with UICLI
bun 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
# Target environmentbun run aw db migrate --target sqlite|d1|postgres
# 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.