# mc-webui .gitignore

# ============================================
# Environment and Configuration
# ============================================
.env
*.env
!.env.example

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

# ============================================
# Virtual Environment
# ============================================
venv/
ENV/
env/
.venv

# ============================================
# IDE and Editors
# ============================================
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store

# ============================================
# Testing and Coverage
# ============================================
.pytest_cache/
.coverage
htmlcov/
*.cover
.hypothesis/

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

# ============================================
# Logs and Databases
# ============================================
*.log
*.sql
*.sqlite
*.db

# ============================================
# OS
# ============================================
Thumbs.db
.DS_Store

# ============================================
# Miscellaneous
# ============================================
.claude/