# Git
.git
.gitignore
.gitattributes

# CI/CD
.github/

# Documentation
docs/
*.md
!README.md

# Tests
tests/
.pytest_cache/
.coverage
htmlcov/

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

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

# Virtual environments
venv/
env/
ENV/
.venv

# Project specific
miniflux_articles/
articles/
output/
export/
*.backup

# Config files (use environment variables instead)
config.yaml
config.yml
config.json
*.local.*

# Logs
*.log
logs/

# OS
.DS_Store
Thumbs.db

# Docker
docker-compose.yml
Dockerfile
.dockerignore

# Examples
examples/

# Development dependencies
requirements-dev.txt
