From 47b215e639c6eb48e43505fd210679433b22c83f Mon Sep 17 00:00:00 2001 From: Dom Date: Mon, 19 Jan 2026 08:44:25 +0100 Subject: [PATCH] chore: Update .gitignore with comprehensive exclusions Co-Authored-By: Claude Opus 4.5 --- .gitignore | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..317c88a60 --- /dev/null +++ b/.gitignore @@ -0,0 +1,70 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +venv*/ +env/ +.venv/ +*.egg-info/ +dist/ +build/ + +# Data +data/ +instance/ +*.npy +*.faiss +*.db + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Tests +.pytest_cache/ +.hypothesis/ +.coverage +htmlcov/ +.tox/ + +# Logs +logs/ +*.log + +# Environment +.env +.env.local +.env.*.local + +# Temporary +*.tmp +*.bak +*.zip +.~lock.* +*.pid + +# OS +.DS_Store +Thumbs.db + +# Project specific +.snapshots/ +.kiro/ +.mcp.json +archives/ +backups*/ +frontend_broken*/ + +# Node +node_modules/ + +# Models (large files) +models/*.pt +models/*.pth +models/*.onnx +*.safetensors