# Python cache __pycache__/ *.py[cod] *$py.class *.so .Python # Virtual environments env/ venv/ ENV/ env.bak/ venv.bak/ .venv/ # IDE .vscode/ .idea/ *.swp *.swo .DS_Store # Logs *.log logs/ *.log.* # Git .git/ .gitignore .gitattributes # Documentation README.md docs/ *.pdf # Tests tests/ test_*.py *_test.py # Temporary files tmp/ temp/ *.tmp .cache/ # Jupyter notebooks *.ipynb .ipynb_checkpoints/ # Database temporary files (keep main DB, ignore temp files) *.db-shm *.db-wal # Environment files (will be injected via docker-compose) .env .env.* # Large corpus files (will handle separately) # Uncomment if not including in Docker image # chroma_db/ # data/wikipedia_corpus.parquet # Build artifacts dist/ build/ *.egg-info/ # Docker files (no need to copy into image) Dockerfile docker-compose.yml .dockerignore # GitHub/CI files .github/ .gitmodules