# Version control .git/ .gitignore # Python venv/ __pycache__/ *.pyc *.pyo .pytest_cache/ .mypy_cache/ # Databases and state (persisted via volumes) *.db hardware_state.json # Secrets (generated by setup.sh) .env secrets/ searxng/ # IDE / editor .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store Thumbs.db # Models (bind-mounted at runtime) models/ # Documentation (not needed in image) *.md docs/ TASKS.md docker.md ai.md CLAUDE.md scripts/ tests/