# Version control
.git/
.gitignore

# Python bytecode / build artefacts
__pycache__/
*.py[cod]
*.egg-info/
.venv/
dist/
build/

# Tests
tests/
coverage.xml
.coverage

# Web UI: dependencies and output are produced inside the build
frontend/node_modules/
boomarr/web/dist/

# IDE
.vscode/
.idea/

# Config / secrets (never bake into the image)
config/
.env

# Docker files themselves
docker-compose.yml
.dockerignore
