chore: add .gitignore

This commit is contained in:
dom
2026-03-05 00:37:41 +01:00
parent 542797a124
commit 2578afb6ff
1716 changed files with 1905609 additions and 18 deletions

84
.gitignore vendored
View File

@@ -1,28 +1,76 @@
# Python
.venv/
# === Python ===
__pycache__/
*.pyc
*.py[cod]
*.pyo
*.egg-info/
.pytest_cache/
.hypothesis/
*.egg
dist/
build/
*.whl
# Données générées
output/
input/
data/
# === Virtual environments ===
.venv/
venv/
venv_*/
env/
# Référentiels (volumineux, non versionnés)
# === ML Models & Data ===
*.pt
*.pth
*.onnx
*.bin
*.safetensors
*.h5
*.hdf5
*.pkl
*.pickle
*.npy
*.npz
*.faiss
models/
*.tar.gz
*.zip
# === Documents & Media ===
*.pdf
*.xls
*.docx
*.xlsx
*.csv
*.png
*.jpg
*.jpeg
*.gif
*.mp3
*.wav
*.mp4
# PDFs réels (PHI potentiel — JAMAIS committer)
real_crh_pdfs/
data/crh_samples/*.pdf
tests/resources/real_crh/*.pdf
# === IDE ===
.idea/
.vscode/
*.swp
*.swo
*~
# Configuration locale
# === OS ===
.DS_Store
Thumbs.db
.~lock.*
# === Secrets ===
.env
*.env
credentials.json
token.pickle
# IDE / outils
.claude/
# === Logs & Cache ===
*.log
logs/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
# === Backups ===
*_backup_*
backups/