diff --git a/AGENT.md b/AGENT.md new file mode 100644 index 0000000..e69de29 diff --git a/startup.ps1 b/startup.ps1 deleted file mode 100644 index 05dd053..0000000 --- a/startup.ps1 +++ /dev/null @@ -1,16 +0,0 @@ -# startup.ps1 - rebuilds and starts the stack fresh each time -Set-StrictMode -Version Latest -$ErrorActionPreference = "Stop" - -# always operate from repo root -Set-Location $PSScriptRoot - -Write-Host "Stopping and removing previous containers/images..." -ForegroundColor Cyan -docker compose -f docker-compose.dev.yml down --rmi local --remove-orphans - -Write-Host "Building + starting stack..." -ForegroundColor Cyan -docker compose -f docker-compose.dev.yml up --build --force-recreate -d - -Write-Host "Services status:" -ForegroundColor Cyan -docker compose -f docker-compose.dev.yml ps -Write-Host "Open http://localhost:5050/" -ForegroundColor Green