11 lines
327 B
PowerShell
11 lines
327 B
PowerShell
|
|
$VPS = "root@38.54.27.70"
|
||
|
|
$PROJECT = "/root/PolyWeather"
|
||
|
|
|
||
|
|
Write-Host "🚀 Deploying to $VPS..." -ForegroundColor Cyan
|
||
|
|
|
||
|
|
ssh $VPS "cd $PROJECT && git pull && docker compose up -d --build"
|
||
|
|
|
||
|
|
Write-Host "✅ Deploy complete. Checking health..." -ForegroundColor Green
|
||
|
|
Start-Sleep 8
|
||
|
|
ssh $VPS "curl -s http://localhost:8000/healthz"
|