12 lines
250 B
Bash
Executable File
12 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
echo "🌊 Starting Great Swarm Simulation Loop 🌊"
|
|
echo "Press Ctrl+C to stop the chaos."
|
|
|
|
while true
|
|
do
|
|
echo "--- Triggering Simulation Cycle ---"
|
|
curl -X POST http://192.168.0.188:3004/api/admin/simulate
|
|
echo ""
|
|
sleep 5
|
|
done
|