# Version control .git .gitignore # Python caches / virtualenvs __pycache__/ *.py[cod] *.egg-info/ .venv/ venv/ .pytest_cache/ .coverage htmlcov/ # Local environment / secrets — never bake into the image .env .env.local openrouter_key.txt # Editor / OS .DS_Store .idea/ .vscode/ # Local runtime data (mounted as volumes in docker-compose, not baked in) data/ backups/ app.log *.db *.sqlite # Docker artifacts Dockerfile docker-compose.yml .dockerignore # Docs / design notes not needed at runtime *.md