added stop start files and testing multivendor support

This commit is contained in:
root
2026-01-27 23:00:12 +00:00
parent 5ae2b42ce8
commit b9421ea0e9
5 changed files with 420 additions and 158 deletions

18
stop-servers.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
echo "Stopping CVE Dashboard servers..."
if [ -f backend.pid ]; then
kill $(cat backend.pid) 2>/dev/null
rm backend.pid
echo "✓ Backend stopped"
fi
if [ -f frontend.pid ]; then
kill $(cat frontend.pid) 2>/dev/null
rm frontend.pid
echo "✓ Frontend stopped"
fi
pkill -f "node server.js"
pkill -f "react-scripts start"
echo "All servers stopped"