-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstart-dev.bat
More file actions
27 lines (22 loc) · 790 Bytes
/
start-dev.bat
File metadata and controls
27 lines (22 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
echo Starting Roadrunner Autocoder Development Environment
echo =====================================================
echo.
echo Starting Backend Server (Port 3333)...
start "Roadrunner Backend" cmd /k "cd backend && npm start"
echo Waiting 3 seconds for backend to initialize...
timeout /t 3 /nobreak >nul
echo Starting Frontend Server (Port 5733)...
start "Roadrunner Frontend" cmd /k "npm run dev"
echo.
echo =====================================================
echo Roadrunner Autocoder is starting up!
echo.
echo Frontend: http://localhost:5733
echo Backend: http://localhost:3333
echo.
echo Both servers are running in separate windows.
echo Close this window or press Ctrl+C to stop monitoring.
echo =====================================================
echo.
pause