-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart-all.ps1
More file actions
19 lines (15 loc) · 940 Bytes
/
start-all.ps1
File metadata and controls
19 lines (15 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Start all services for BASA Chatbot
Write-Host "Starting BASA Chatbot services..." -ForegroundColor Green
# Start Laravel development server
Write-Host "Starting Laravel server..." -ForegroundColor Yellow
Start-Process powershell -ArgumentList "-NoExit", "-Command", "php artisan serve --port=8080"
# Start queue worker
Write-Host "Starting queue worker..." -ForegroundColor Yellow
Start-Process powershell -ArgumentList "-NoExit", "-Command", "php artisan queue:work"
# Start Vite development server
Write-Host "Starting Vite development server..." -ForegroundColor Yellow
Start-Process powershell -ArgumentList "-NoExit", "-Command", "npm run dev"
Write-Host "All services started!" -ForegroundColor Green
Write-Host "Laravel: http://127.0.0.1:8080" -ForegroundColor Cyan
Write-Host "Vite: http://localhost:5173" -ForegroundColor Cyan
Write-Host "File processing status: Polling-based (no WebSocket required)" -ForegroundColor Cyan