-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal_check.ps1
More file actions
31 lines (27 loc) · 856 Bytes
/
final_check.ps1
File metadata and controls
31 lines (27 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# UTF-8 encoded PowerShell script
Write-Host "=== EDGE-TINYML PRODUCTION READINESS CHECK ===" -ForegroundColor Cyan
$files = @(
"scripts/production_logger.py",
"scripts/metrics_exporter.py",
".github/workflows/ci.yml",
"scripts/create_release.sh",
"deployment/edgetinyml.service",
"scripts/backup_db.ps1",
"tests/perf/windows_optimized_bench.py"
)
$allPresent = $true
foreach ($file in $files) {
if (Test-Path $file) {
Write-Host " ✅ $file" -ForegroundColor Green
} else {
Write-Host " ❌ $file" -ForegroundColor Red
$allPresent = $false
}
}
if ($allPresent) {
Write-Host "`n🎯 ALL SYSTEMS READY FOR PRODUCTION!" -ForegroundColor Green
} else {
Write-Host "`n⚠️ Some files missing" -ForegroundColor Yellow
}
Write-Host "
=== CHECK COMPLETE ===" -ForegroundColor Cyan