Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions scripts/check_env.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Write-Host ""
Write-Host "Environment Validation"
Write-Host ""

python --version
git --version

Write-Host ""

try {
docker --version
}
catch {
Write-Host "Docker Not Installed"
}

try {
kubectl version --client
}
catch {
Write-Host "Kubectl Not Installed"
}

try {
helm version
}
catch {
Write-Host "Helm Not Installed"
}

try {
terraform version
}
catch {
Write-Host "Terraform Not Installed"
}
3 changes: 3 additions & 0 deletions scripts/run_app.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Write-Host "Starting FastAPI Application..."

uvicorn app.main:app --reload
Empty file added scripts/run_coverage.ps1
Empty file.
3 changes: 3 additions & 0 deletions scripts/run_tests.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Write-Host "Running Test Suite..."

pytest -v
5 changes: 5 additions & 0 deletions scripts/setup_dev.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Write-Host "Installing dependencies..."

pip install -r requirements.txt

Write-Host "Setup completed."
Binary file modified test.db
Binary file not shown.