# DomainRaptor .gitignore

# ========================
# Python
# ========================
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# ========================
# Virtual Environments
# ========================
.venv/
venv/
ENV/
env/
.env.local
.env.*.local

# ========================
# UV Package Manager
# ========================
.uv/

# ========================
# IDE / Editors
# ========================
.idea/
.vscode/
*.swp
*.swo
*~
.project
.pydevproject
.settings/
*.sublime-project
*.sublime-workspace

# ========================
# Testing
# ========================
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
nosetests.xml

# ========================
# Type Checking
# ========================
.mypy_cache/
.dmypy.json
dmypy.json

# ========================
# Linting
# ========================
.ruff_cache/

# ========================
# Logs & Databases
# ========================
*.log
*.sqlite
*.sqlite3
*.db
logs/

# ========================
# OS Generated
# ========================
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini

# ========================
# Project Specific
# ========================
# API Keys & Secrets (NEVER commit these)
.env
*.env
secrets.yaml
secrets.yml
config.local.yaml
*.pem
*.key

# Output directories
output/
results/
reports/
exports/

# Cache directories
.cache/
cache/

# Temporary files
tmp/
temp/
*.tmp
*.temp
*.bak

# User data
data/
*.csv
*.json.backup

# ========================
# Documentation
# ========================
site/
docs/_build/
docs/social/

# ========================
# Docker
# ========================
.docker/
docker-compose.override.yml

# Generated reports
report.html
*.report.html
