# Git
.git
.gitignore

# Documentation
README.md
WARP.md
*.md

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

# Build artifacts
bin/
!bin/*-arm64
!bin/*-amd64
*.exe
*.test
*.prof

# Logs
*.log
logs/

# Models (downloaded separately)
models/
*.gguf
*.bin

# Temporary files
tmp/
temp/
.tmp

# OS files
.DS_Store
Thumbs.db

# Docker files
Dockerfile*
docker-compose*.yml
.dockerignore

# CI/CD
.github/
.gitlab-ci.yml

# Environment files
.env
.env.local
.env.*.local

# Coverage reports
coverage.out
coverage.html

# Vendor directory (ephemeral, use -mod=mod for builds)
vendor/

# Non-runtime directories (tests, docs, deploy artifacts)
test/
!test/services/
docs/
deploy/
charts/
config/
.cursor/
.cursorignore
migrations/