# Binaries and build artifacts
notification-service
*.exe
*.test
*.out
coverage.out
coverage.html

# Environment files (never commit real secrets)
.env
.env.local
.env.*.local

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

# Dependency cache
vendor/

# OS
.DS_Store
Thumbs.db

# Virtual environments
procEnv/
lgrEnv/
.venv/
venv/
env/

# Python build & distribution
__pycache__/
*.py[cod]
*$py.class
*.so
dist/
build/
*.egg-info/
.eggs/

# Test & coverage artefacts
.pytest_cache/
.coverage
coverage.xml
htmlcov/

# Type-checker caches
.pyright/
.mypy_cache/
pyrightconfig.json

# Packaging / lock files (not committed unless pinned intentionally)
uv.lock

# Docs build output
site/

