added tests for backend, router dom to frontend

This commit is contained in:
QkoSad
2024-12-03 16:09:25 +02:00
parent 8e4317abde
commit cb7b3ad94c
1142 changed files with 3599 additions and 573520 deletions
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
url="localhost:5000/" # Replace with your URL
# Loop to send 1000 requests
for i in {1..10000}
do
curl -s $url > /dev/null & # Send the request in the background
done
# Wait for all background processes to finish
wait
echo "1000 requests sent!"