# ============================================================================= # Environment & Secrets — NEVER commit these # ============================================================================= .env .env.local .env.*.local *.pem *.key secrets/ # ============================================================================= # Python # ============================================================================= __pycache__/ *.py[cod] *$py.class *.so .Python .venv/ venv/ env/ ENV/ *.egg-info/ dist/ build/ .eggs/ pip-wheel-metadata/ .mypy_cache/ .ruff_cache/ .pytest_cache/ htmlcov/ .coverage coverage.xml *.cover # ============================================================================= # Node / Frontend # ============================================================================= node_modules/ .next/ out/ .nuxt/ dist/ .cache/ *.log npm-debug.log* yarn-debug.log* yarn-error.log* .pnpm-debug.log* # ============================================================================= # Database & Vector Store # ============================================================================= chroma_db/ *.sqlite3 *.db postgres_data/ # ============================================================================= # IDE & OS # ============================================================================= .idea/ .vscode/ *.swp *.swo .DS_Store Thumbs.db # ============================================================================= # Docker # ============================================================================= .docker/