# Environment variables
.env
.env.local
.env.production
.env*.local
*.env

# Claude Code — contains MCP secrets
.claude/mcp.json

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv
pip-log.txt
pip-delete-this-directory.txt
.pytest_cache/
*.egg-info/
dist/
build/
*.egg

# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# Next.js
.next/
out/
build/
*.tsbuildinfo
next-env.d.ts

# Expo/React Native
.expo/
dist/
*.jks
*.p8
*.p12
*.key
*.mobileprovision
*.orig.*
web-build/

# IDEs
.vscode/
.idea/
*.swp
*.swo
*.swn
.DS_Store

# Docker
*.log
docker-compose.override.yml

# Database
*.db
*.sqlite
*.sqlite3
postgres-data/

# Redis
dump.rdb

# Celery
celerybeat-schedule
celerybeat.pid

# Coverage
coverage/
.coverage
htmlcov/

# Misc
*.bak
.cache/
temp/
tmp/
uploads/
static/
media/

# Secrets - CRITICAL
*.pem
*.key
*.crt
*.pfx
secrets/
credentials/

# Runtime output
backend/logs/
backend/data/ledger/
backend/MODULE_RELOADED.txt

# Test/debug data files
backend/data/agent_*.json
backend/data/quality_test_results.json
backend/data/pq08_*.json
nul

# Harness artifacts
backend/harness/runs/*/
backend/harness/clerk_*.json
backend/harness/jwt_token.txt

# Generated output
backend/tests/coverage.json

# Audit output
audit/

