# CLAUDE.md This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. ## Commands ```bash bun run dev # Start Next.js dev server bun run build # Production build bun run lint # Biome lint check bun run format # Biome format (auto-fix) bun run db:push # Push schema changes to SQLite database bun run db:generate # Generate Drizzle migration files bun run db:migrate # Run Drizzle migrations bun run db:studio # Open Drizzle Studio (visual DB browser) ``` IMPORTANT: Default to using Bun instead of Node.js: - Use `bun ` instead of `node ` or `ts-node ` - Use `bun test` instead of `jest` or `vitest` - Use `bun build ` instead of `webpack` or `esbuild` - Use `bun install` instead of `npm install` or `yarn install` or `pnpm install` - Use `bun run