-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
28 lines (22 loc) · 719 Bytes
/
start.bat
File metadata and controls
28 lines (22 loc) · 719 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
@echo off
echo 🚀 Starting Sports Connect Full Stack Application...
echo.
echo 📊 Starting Backend Server...
start "Backend Server" cmd /k "cd backend && npm run dev"
timeout /t 3 /nobreak >nul
echo 📱 Starting Frontend Server...
start "Frontend Server" cmd /k "npm run dev:frontend"
echo.
echo ✅ Both servers are starting...
echo 📊 Backend: http://localhost:3333
echo 📱 Frontend: http://localhost:8081
echo 🗄️ MongoDB Compass: mongodb://localhost:27017/sportsconnect
echo.
echo Press any key to open the application...
pause >nul
start http://localhost:8081
start http://localhost:3333
echo.
echo 🎉 Sports Connect is now running!
echo Close the terminal windows to stop the servers.
pause