chore: add debug and NSSM deployment scripts to streamline local dev

and Windows service management
This commit is contained in:
2025-08-07 11:40:39 +02:00
parent 4fb751a268
commit 6fab1e1327
6 changed files with 58 additions and 0 deletions

10
nssm_startall.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
set -e
# Start all services
services=$(nssm list | grep "Hitman" | awk '{print $1}')
for service in $services; do
echo "Starting $service"
nssm start "$service"
done