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

This commit is contained in:
2026-03-05 00:37:19 +01:00
parent 4e6fd97e84
commit f9532d5543
62 changed files with 9296 additions and 22 deletions

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);
}