# Python __pycache__/ *.pyc *.pyo *.pyd .Python # Virtual Environment venv/ env/ ENV/ .venv # Environment Variables .env .env.local # Data directories (generated at runtime) data/raw/ data/index/ data/db/ data/processed/ # IDE .vscode/ .idea/ *.swp *.swo *~ # OS .DS_Store Thumbs.db # Git .git/ .gitignore # Testing .pytest_cache/ .coverage htmlcov/ # Documentation (not needed in container) docs/ *.md !README.md # Notebooks notebooks/ *.ipynb # Build artifacts dist/ build/ *.egg-info/