# Git .git .gitignore # Python cache __pycache__ *.py[cod] *$py.class .pytest_cache # Virtual environments .venv venv ENV # IDE .idea .vscode *.swp # Docker files Dockerfile docker-compose*.yml # Env files (keep example) .env .env.local # Docs *.md # Tests (for production image) tests/ # Uploads (mounted as volume) uploads/ # Chroma persistence (mounted as volume in docker-compose; should not be part of build context) chroma_db/ # Misc .DS_Store *.log