Initial import with GitLab CI/CD and registry deploy flow

This commit is contained in:
Yera All
2026-04-02 17:05:45 +05:00
commit 5374c202d9
338 changed files with 81297 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
Write-Host 'Checking gateway health...'
Invoke-RestMethod -Uri 'http://localhost:8080/health' | ConvertTo-Json -Depth 5
Write-Host 'Checking auth health through proxy...'
Invoke-RestMethod -Uri 'http://localhost:8080/proxy/auth/health' | ConvertTo-Json -Depth 5
Write-Host 'Logging in to auth...'
$loginBody = @{ username='admin'; password='admin123' } | ConvertTo-Json
Invoke-RestMethod -Method Post -Uri 'http://localhost:8080/proxy/auth/auth/login' -Body $loginBody -ContentType 'application/json' | ConvertTo-Json -Depth 5
Write-Host 'Smoke test completed.'