-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.bat
More file actions
32 lines (27 loc) · 837 Bytes
/
dev.bat
File metadata and controls
32 lines (27 loc) · 837 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
28
29
30
31
32
@echo off
echo ==========================================
echo NeuroPrep AI - Auto Launcher
echo ==========================================
echo.
echo [1/3] Verifying dependencies...
call npm install
echo Dependencies checked.
echo.
echo [2/3] Starting Backend Server...
start "NeuroPrep Backend" cmd /k "npm run dev --workspace=backend"
echo Backend launching in new window...
echo.
echo Waiting for backend to warm up...
timeout /t 5 >nul
echo [3/3] Starting Frontend Server...
start "NeuroPrep Frontend" cmd /k "npm run dev --workspace=frontend"
echo Frontend launching in new window...
echo.
echo ==========================================
echo Launch Complete!
echo ==========================================
echo.
echo Please wait a moment for the servers to start.
echo Then open: http://localhost:3000
echo.
pause