# Git
.git
.gitignore
.gitattributes

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

# Python (exclude all Python cache and test files)
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
**/.Python
**/.pytest_cache/
**/.mypy_cache/
**/.hypothesis/
**/.tox/
**/.coverage
**/coverage.xml
**/nosetests.xml
__pycache__
*.pyc
*.pyo
*.pyd
.Python
env
pip-log.txt
pip-delete-this-directory.txt
.tox
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.log
.mypy_cache
.pytest_cache
.hypothesis

# Virtual environments (exclude all venv directories)
**/venv/
**/env/
**/ENV/
**/env.bak/
**/venv.bak/
venv/
env/
ENV/
env.bak/
venv.bak/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Build outputs
dist/
build/
.next/
out/
.turbo/

# Logs (exclude all log directories and files)
**/logs/
**/*.log
logs/
*.log

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Coverage directory
coverage/
.nyc_output

# Dependency directories
jspm_packages/
.npm
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# parcel-bundler cache
.cache
.parcel-cache

# Storybook build outputs
.out
.storybook-out

# Temporary folders
tmp/
temp/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# AWS
.aws/

# Terraform
*.tfstate
*.tfstate.*
.terraform/
.terraform.lock.hcl

# Docker
Dockerfile*
docker-compose*
.dockerignore

# Documentation
README.md
*.md
docs/

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

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

# Large files that shouldn't be in containers
*.zip
*.tar.gz
*.rar
*.7z

# Database files
*.db
*.sqlite
*.sqlite3

# Backup files
*.bak
*.backup

# Deployment directories (exclude from build context)
deploy/
!deploy/docker/
!deploy/docker/entrypoint.sh

# User data directories
users/

# Test files and data
**/test*.csv
**/test*.json
**/tests/
**/test/

# Large font files (if not needed, can be downloaded at runtime)
# Uncomment if fonts are not needed in container
# **/app/assets/fonts/

