# CLAUDE.md This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. ## Commands ```bash # Development bun install # Install dependencies bun run dev # Dev server with experimental HTTPS (localhost:3000) bun run build # Production build bun run start # Start production server bun run lint # Run ESLint # Database npx prisma migrate dev # Run/create migrations npx prisma db seed # Seed with initial data npx prisma generate # Regenerate Prisma client after schema changes ``` ## Architecture See @.claude/ARCHITECTURE.md ## Environment Variables See @.claude/ENV.md ## Deployment See @.claude/DEPLOYMENT.md