# Git
.git
.gitignore

# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.venv
venv/
ENV/
env/
.eggs
*.egg-info/
*.egg
.mypy_cache/
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/

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

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

# Environment files (use Docker secrets or env vars instead)
.env
.env.*
!.env.example

# Build artifacts (will be created in Docker)
dist/
build/

# Documentation
*.md
!README.md
docs/

# Tests
tests/
test/
*_test.py
test_*.py

# Docker
Dockerfile*
docker-compose*.yml
.docker/

# Misc
*.log
tmp/
temp/
.cache/
