Add stop.sh to shut down all three backends

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-19 11:48:28 +02:00
parent ae66fdf4ce
commit 4741b18b74
Executable
+3
View File
@@ -0,0 +1,3 @@
#!/bin/bash
pkill -f "uvicorn main" 2>/dev/null && echo "All backends stopped." || echo "No backends were running."