File size: 444 Bytes
d8808e7 | 1 2 3 4 5 6 7 8 | # Restart dev stack when HMR/reload feels stuck (Windows Docker bind mounts).
# Usage: .\scripts\dev-docker-restart.ps1
Set-Location (Join-Path $PSScriptRoot '..')
$env:ENV_FILE_PATH = 'C:\Users\dream\.secrets\shared.env'
docker compose restart api frontend
Write-Host "Restarted api + frontend. UI: http://localhost:5173 API: http://localhost:8000"
Write-Host "If changes still do not appear, hard-refresh the browser (Ctrl+Shift+R)."
|