-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.bat
More file actions
25 lines (20 loc) · 782 Bytes
/
Copy pathdev.bat
File metadata and controls
25 lines (20 loc) · 782 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
@echo off
REM SlipStream Development Script
REM Run both backend and frontend in parallel
echo.
echo SlipStream Development Environment
echo ===================================
echo.
REM Start backend in a new window
start "SlipStream Backend :8080" cmd /k "cd /d %~dp0 && echo Starting Backend on http://localhost:8080 && echo. && go run ./cmd/slipstream"
REM Give backend a moment to start
timeout /t 2 /nobreak > nul
REM Start frontend in a new window
start "SlipStream Frontend :3000" cmd /k "cd /d %~dp0web && echo Starting Frontend on http://localhost:3000 && echo. && npm run dev"
echo Development servers starting:
echo.
echo Backend: http://localhost:8080
echo Frontend: http://localhost:3000
echo.
echo Close the command windows to stop the servers.
echo.