From e80004c6c896b5b3846f6a9da58cfc70047d354c Mon Sep 17 00:00:00 2001 From: Dom Date: Thu, 5 Mar 2026 00:37:28 +0100 Subject: [PATCH] chore: add .gitignore --- .gitignore | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7cc8b7e --- /dev/null +++ b/.gitignore @@ -0,0 +1,76 @@ +# === Python === +__pycache__/ +*.py[cod] +*.pyo +*.egg-info/ +*.egg +dist/ +build/ +*.whl + +# === Virtual environments === +.venv/ +venv/ +venv_*/ +env/ + +# === ML Models & Data === +*.pt +*.pth +*.onnx +*.bin +*.safetensors +*.h5 +*.hdf5 +*.pkl +*.pickle +*.npy +*.npz +*.faiss +models/ +*.tar.gz +*.zip + +# === Documents & Media === +*.pdf +*.docx +*.xlsx +*.csv +*.png +*.jpg +*.jpeg +*.gif +*.mp3 +*.wav +*.mp4 + +# === IDE === +.idea/ +.vscode/ +*.swp +*.swo +*~ + +# === OS === +.DS_Store +Thumbs.db +.~lock.* + +# === Secrets === +.env +*.env +credentials.json +token.pickle + +# === Logs & Cache === +*.log +logs/ +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +htmlcov/ +.coverage + +# === Backups === +*_backup_* +backups/