# --- Python -------------------------------------------------------------- venv/ .env/ .venv/ env/ __pycache__/ *.py[cod] *.pyo *.pyd *.so *.dll *.dylib # Build / distribution build/ dist/ *.egg-info/ .eggs/ *.egg *.whl *.zip *.tar.gz *.tgz *.rar *.tar.bz2 *.gz # Virtual environment activation scripts activate* activate.csh activate.fish activate.ps1 activate pyvenv.cfg # Coverage / testing htmlcov/ coverage.xml .tox/ .env .env.* # --- Node / JavaScript ----------------------------------------------- node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* package-lock.json yarn.lock # Transpiled output (if any) dist/ build/ lib/ src/ # --- OS / IDE --------------------------------------------------------- .DS_Store Thumbs.db .idea/ .vscode/ *.swp *.swo *.bak *.tmp *.temp *.orig *.sublime-workspace *.sublime-project # --- Binaries / compiled packages -------------------------------------- lib/python3.13/site-packages/ lib64/ bin/ # --- Runtime data / large blobs --------------------------------------- chroma_db/ chroma.sqlite3 # --- Misc ---------------------------------------------------------------- # (Leave this at the end to catch anything not matched above) # (but **do NOT** put a blanket "*" here!)