-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQUICK_START.ps1
More file actions
28 lines (22 loc) · 1.11 KB
/
QUICK_START.ps1
File metadata and controls
28 lines (22 loc) · 1.11 KB
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
# Quick Start - AI Interview Coach
# Run this from the Ai_powered_interview_coach directory
Write-Host "Starting AI Interview Coach..." -ForegroundColor Cyan
Write-Host "=================================" -ForegroundColor Cyan
# Check services
Write-Host "PostgreSQL: Running" -ForegroundColor Green
Write-Host "Redis: Running" -ForegroundColor Green
# Start Backend
Write-Host ""
Write-Host "Starting Backend..." -ForegroundColor Yellow
Start-Process powershell -ArgumentList "-NoExit", "-Command", "cd '$PWD\backend'; python -m uvicorn app.main:app --reload --host 0.0.0.0 --port 8000"
Start-Sleep -Seconds 3
# Start Frontend
Write-Host "Starting Frontend..." -ForegroundColor Yellow
Start-Process powershell -ArgumentList "-NoExit", "-Command", "cd '$PWD\frontend'; npm run dev"
Write-Host ""
Write-Host "Services Starting!" -ForegroundColor Green
Write-Host "Wait 10 seconds then visit:" -ForegroundColor Cyan
Write-Host " Frontend: http://localhost:5173" -ForegroundColor White
Write-Host " Backend: http://localhost:8000" -ForegroundColor White
Write-Host ""
Write-Host "AI Agent is 100% working!" -ForegroundColor Green