-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
25 lines (19 loc) · 759 Bytes
/
Copy pathstart.bat
File metadata and controls
25 lines (19 loc) · 759 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
echo ========================================================
echo Starting AlphaAlign
echo ========================================================
:: Start Backend
echo Starting Backend Server (port 8000)...
start "AlphaAlign Backend" cmd /k "cd backend & call venv\Scripts\activate.bat & uvicorn app.main:app --reload --host 127.0.0.1 --port 8000"
:: Wait 3 seconds
timeout /t 3 /nobreak >nul
:: Start Frontend
echo Starting Frontend Development Server (port 5173)...
start "AlphaAlign Frontend" cmd /k "cd frontend & npm run dev"
:: Wait for frontend to initialize
timeout /t 3 /nobreak >nul
:: Open browser
start http://localhost:5173
echo.
echo Both servers have been started in new windows.
echo Browser opened to http://localhost:5173