-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_all.bat
More file actions
29 lines (25 loc) · 856 Bytes
/
run_all.bat
File metadata and controls
29 lines (25 loc) · 856 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
@echo off
chcp 65001 >nul
echo.
echo ========================================
echo Starting Frontend and Backend Services
echo ========================================
echo.
echo Starting backend service...
start "Daily Eat Backend" cmd /k "cd backend && venv\Scripts\activate.bat && python manage.py runserver 127.0.0.1:8000"
echo Waiting for backend to start...
timeout /t 3 /nobreak >nul
echo Starting frontend service...
start "Daily Eat Frontend" cmd /k "cd frontend && npm run dev"
echo.
echo Services started successfully!
echo.
echo Frontend URL: http://localhost:5173
echo Backend URL: http://127.0.0.1:8000
echo Admin Panel: http://127.0.0.1:8000/admin
echo.
echo Test Account: fooduser / 12345678
echo Admin Account: admin / admin
echo.
echo Closing this window will not stop services, press Ctrl+C in each service window to stop
pause