# Version control
.git
.gitignore
.github
.gitattributes

# Frontend build artifacts and dependencies
frontend/node_modules/
frontend/dist/
frontend/.vite/
frontend/.cache/

# Static files (will be built and copied during Docker build)
src/whatsthedamage/static/

# Development and IDE files
.vscode/
.idea/
*.swp
*.swo

# Python cache and bytecode
__pycache__/
*.pyc
*.pyo
*.pyd

# Virtual environments
venv/
.venv/
env/
ENV/

# Testing
tests/
.pytest_cache/
.coverage
coverage.xml
*.log
.tox/
.mypy_cache/
.ruff_cache/

# Build artifacts
build/
dist/
*.egg-info/

# OS generated files
.DS_Store
Thumbs.db

# Environment files
.env
.env.local

# Docker files (optional, to avoid copying into context)
Dockerfile*
.dockerignore

# Other unnecessary files
*.tmp
.cache/
