# Version control
.git/
.gitignore

# GitHub Actions / CI
.github/

# Documentation
*.md
!README.md
LICENSE

# Docker files (not needed inside the image)
Dockerfile
docker-compose.yml
.dockerignore

# Tests
tests/

# Dev / example servers
misc/

# Python artifacts
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
.venv/
*.egg-info/
dist/
build/
