-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.bat
More file actions
32 lines (26 loc) · 766 Bytes
/
Copy pathstart.bat
File metadata and controls
32 lines (26 loc) · 766 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 Starting Smart Service Booking System...
echo.
echo Step 1: Installing dependencies...
call npm install
echo.
echo Step 2: Starting Laravel Server...
start "Laravel Server" cmd /k "php artisan serve --host=0.0.0.0 --port=8000"
echo.
echo Step 3: Starting NPM Dev Server...
start "NPM Dev" cmd /k "npm run dev"
echo.
echo ========================================
echo Smart Service Booking System Started!
echo ========================================
echo.
echo Laravel Server: http://localhost:8000
echo.
echo Press any key to open the application in browser...
pause > nul
start http://localhost:8000
echo.
echo Application is now running!
echo Keep this window open to keep servers running.
echo Press Ctrl+C in server windows to stop.
pause