chore: add .gitignore, remove PDFs/models/zips from history

This commit is contained in:
2026-03-05 00:37:19 +01:00
parent f0730b8211
commit 2d6f8c0309
2 changed files with 69 additions and 22 deletions

79
.gitignore vendored
View File

@@ -1,41 +1,76 @@
# Python # === Python ===
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*.pyo *.pyo
*.egg-info/ *.egg-info/
*.egg
dist/ dist/
build/ build/
*.spec *.whl
# Environnement virtuel # === Virtual environments ===
.venv/ .venv/
venv/ venv/
venv_*/
env/ env/
# IDE # === 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/ .idea/
.vscode/ .vscode/
*.swp *.swp
*.swo *.swo
*~
# Modeles NER (volumineux, telecharges automatiquement) # === OS ===
models/
# PDF de test et resultats
pdf_natif/
pseudonymise/
# Archives
*.zip
# Nuitka build
*.build/
*.dist/
*.onefile-build/
# OS
.DS_Store .DS_Store
Thumbs.db Thumbs.db
.~lock.*
# Divers # === Secrets ===
test-mini.js .env
*.env
credentials.json
token.pickle
# === Logs & Cache ===
*.log
logs/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
# === Backups ===
*_backup_*
backups/

12
test-mini.js Normal file
View File

@@ -0,0 +1,12 @@
import http from 'k6/http';
import { sleep } from 'k6';
export let options = {
vus: 5, // 5 utilisateurs simultanés
duration: '30s', // pendant 30 secondes
};
export default function () {
http.get('https://www.clesame.fr/'); // Page d'accueil
sleep(1);
}