# Python bytecode and caches
__pycache__/
*.py[cod]
*$py.class
.pytest_cache/
.hypothesis/
.mypy_cache/
.dmypy.json
.pyright/
.ruff_cache/
.tox/
.nox/
.coverage
.coverage.*
coverage.xml
htmlcov/

# Virtual environments and local Python tooling
.venv/
venv/
env/
ENV/
*.egg-info/
.pdm-build/
.python-version.local
.direnv/
.envrc

# Build and distribution outputs
/build/
/dist/
/wheelhouse/
*.whl
*.tar.gz
*.zip

# Documentation and generated reports
/site/
/artifacts/
/reports/
/release-evidence/
benchmarks/results*.json
*.log
*.out
*.pid

# Local databases and application uploads
*.sqlite3
*.sqlite3-journal
*.sqlite3-shm
*.sqlite3-wal
/media/
/uploads/
/tmp/

# Environment files and local secrets
.env
.env.*
!.env.example
*.pem
*.key
*.p12
*.secret

# JavaScript tooling and logs
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
.npm/
.cache/

# Docker local overrides and runtime state
docker-compose.override.yml
compose.override.yaml
.docker-volumes/

# Editors and operating-system files
.idea/
.vscode/*
!.vscode/extensions.json
!.vscode/settings.example.json
*.swp
*.swo
*.orig
*.rej
*~
.DS_Store
Thumbs.db
