# Git .git .gitignore # Python __pycache__ *.py[cod] *$py.class *.so .Python .venv venv backend/.venv .pytest_cache .coverage htmlcov *.egg-info # Node (frontend node_modules - npm ci will re-install during build) frontend/node_modules node_modules npm-debug.log* yarn-debug.log* yarn-error.log* # IDE .idea .vscode *.swp *.swo *~ # Docker compose files (not needed inside container) docker-compose*.yml # Environment files .env .env.local .env.*.local backend/.env # Test files tests/ __tests__/ backend/tests/ # Build outputs (will be built fresh in Docker) frontend/dist # Misc .DS_Store Thumbs.db *.log uploads/ backend/uploads/ backend/chroma_db/