# Git and version control .git .gitignore .gitattributes # Python __pycache__ *.py[cod] *$py.class *.so .Python .venv venv/ env/ ENV/ .pytest_cache *.egg-info dist/ build/ # IDE .vscode .idea *.swp *.swo *~ .DS_Store # Environment files .env .env.local .env.*.local # Logs *.log logs/ # Data and cache data/ *.db *.sqlite # Agent-specific .gemini .claude .aider* # Lock files (we'll use requirements.txt in container) uv.lock poetry.lock Pipfile.lock # Documentation *.md !README.md # Test files tests/ .coverage htmlcov/ .tox/ # OS Thumbs.db .DS_Store