-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTART_PROJECT.bat
More file actions
41 lines (33 loc) · 813 Bytes
/
START_PROJECT.bat
File metadata and controls
41 lines (33 loc) · 813 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
33
34
35
36
37
38
39
40
41
@echo off
echo Starting Job Portal Project...
echo Installing Backend Dependencies...
cd backend
pip install -r requirements.txt
echo.
echo Installing Code Runner Dependencies...
cd ..\code-runner
pip install -r requirements.txt
echo.
echo Installing Frontend Dependencies...
cd ..\frontend
call npm install
echo.
echo Starting all services...
echo.
echo 1. Starting Backend Server...
cd ..\backend
start "Backend" cmd /k "python main.py"
echo 2. Starting Code Runner...
cd ..\code-runner
start "Code Runner" cmd /k "python app.py"
echo 3. Starting Frontend...
cd ..\frontend
start "Frontend" cmd /k "npm start"
echo.
echo All services started!
echo Backend: http://localhost:8000
echo Code Runner: http://localhost:5000
echo Frontend: http://localhost:3000
echo.
echo Press any key to exit...
pause > nul