Dieser Commit ist enthalten in:
Claude Project Manager
2025-09-20 21:31:04 +02:00
Commit 6b9b6d4f20
1821 geänderte Dateien mit 348527 neuen und 0 gelöschten Zeilen

28
start-dev.cmd Normale Datei
Datei anzeigen

@ -0,0 +1,28 @@
@echo off
echo Starting SkillMate in development mode...
REM Start Backend Debug Console (kontinuierliche Log-Ausgabe)
start debug-console.cmd
REM Wait a bit
timeout /t 3 /nobreak > nul
REM Start Frontend
start "Frontend" cmd /k "cd frontend && npm run dev"
REM Start Admin Panel
start "Admin Panel" cmd /k "cd admin-panel && npm run dev"
echo.
echo SkillMate is starting...
echo.
echo Backend: http://localhost:3005
echo Frontend: http://localhost:5173
echo Admin: http://localhost:3006
echo.
echo Opening Admin Panel and Frontend in browser...
timeout /t 5 /nobreak > nul
start http://localhost:3006
timeout /t 2 /nobreak > nul
start http://localhost:5173