scripts/cleanComponents.ps1 (12 lines of code) (raw):

# Delete the gpt-rag-ingestion folder from .azure if it exists if (Test-Path -Path ".\.azure\gpt-rag-ingestion") { Remove-Item -Path ".\.azure\gpt-rag-ingestion" -Recurse -Force } # Delete the gpt-rag-orchestrator folder from .azure if it exists if (Test-Path -Path ".\.azure\gpt-rag-orchestrator") { Remove-Item -Path ".\.azure\gpt-rag-orchestrator" -Recurse -Force } # Delete the gpt-rag-frontend folder from .azure if it exists if (Test-Path -Path ".\.azure\gpt-rag-frontend") { Remove-Item -Path ".\.azure\gpt-rag-frontend" -Recurse -Force }