# Build context for the Studio API app - keep this minimal

# Git
.git
.gitignore
.github

# Dependencies (installed fresh in Docker)
node_modules
**/node_modules
bun.lockb
.bun

# Build outputs from other apps (we only need the API distribution)
packages/ai
packages/runtime
packages/sdk
packages/bindings
packages/cf-sandbox
packages/create-deco

# Development files
.vscode
.cursor
.idea
*.log
*.swp
*.swo
*~

# Test files
**/*.test.ts
**/*.test.tsx
**/*.test.js
**/*.spec.ts
**/*.spec.js
**/test
**/tests
**/__tests__
coverage

# Documentation
docs
plans
tasks
*.md
!README.md

# Environment files
.env*
!.env.example

# Database files (except migrations)
data
*.db
*.db-shm
*.db-wal
!migrations

# Misc
.DS_Store
*.pem
.turbo
.next
.cache
dist
!apps/api/dist
