chore: add .gitignore
This commit is contained in:
81
.gitignore
vendored
81
.gitignore
vendored
@@ -1,23 +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
|
||||
|
||||
# Configuration locale
|
||||
# === IDE ===
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# === 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/
|
||||
|
||||
Reference in New Issue
Block a user