# Version control .git/ .gitignore # Docs and planning docs/ README* *.md # Tests tests/ # Dev tooling .venv/ venv/ env/ .pytest_cache/ .coverage htmlcov/ # Secrets / local config (mounted at runtime via volume) .env *.env.local config.yaml # Runtime data (mounted at runtime via volume) playbook_cache/ # NOTE: first-party plugins under plugins/ now ship IN the image # (Dockerfile `COPY plugins/`), so plugins/ must NOT be ignored here. # Third-party plugins are mounted at runtime into /data/plugins instead. # Deployment files not needed in image docker-compose.yml systemd/ # Editor / OS .idea/ .vscode/ *.swp *.swo .DS_Store Thumbs.db # Python artifacts __pycache__/ *.py[cod] *.egg-info/ dist/ build/