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

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