# Version control
.git
.gitignore

# Python
.venv
venv/
ENV/
__pycache__
*.py[cod]
*$py.class
*.egg-info
*.egg
.eggs/
dist/
build/
htmlcov/
.pytest_cache/
.ruff_cache/
.mypy_cache/

# Environment
.env
.env.*
!.env.example

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

# OS
.DS_Store
Thumbs.db
# Docker
docker-compose.yml
Dockerfile
postgres/

# Editor backups
*.bkp
.$*.drawio.bkp

# Dev/test files
tests/
docs/
*.md
!README.md

# Worktrees
.worktrees/
.superpowers/
# Storage
dlightrag_storage/
*.db
*.log

# Test coverage
.coverage
coverage.xml
