Files
SkillMate/restart-services.cmd
Claude Project Manager 6b9b6d4f20 Initial commit
2025-09-20 21:31:04 +02:00

16 Zeilen
246 B
Batchfile

@echo off
echo Restarting all services...
echo.
echo Killing existing Node processes...
taskkill /F /IM node.exe 2>nul
echo.
echo Rebuilding shared module...
cd shared
call npm run build
cd ..
echo.
echo Starting services...
call start-dev.cmd