# --- Virtual environments --- venv/ .venv/ env/ .env/ .env # --- Python bytecode --- *.pyc __pycache__/ # --- IDE project folders --- .vscode/ .idea/ # --- OS-generated files --- .DS_Store Thumbs.db # --- SQLite / misc DB files --- *.sqlite3 *.db # --- Postgres Docker data directory --- pgdata/ # --- HuggingFace models cache --- hf_cache/ # --- Logs --- *.log logs/