From 3d1bb93dfd02fc9c544465d5100b3e54a603817a Mon Sep 17 00:00:00 2001 From: Nirodan Date: Thu, 22 Jan 2026 12:03:36 +0100 Subject: [PATCH] Deleted old faststart setup --- AGENT.md | 0 startup.ps1 | 16 ---------------- 2 files changed, 16 deletions(-) create mode 100644 AGENT.md delete mode 100644 startup.ps1 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