mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-09-05 22:27:15 +00:00
* INS-2798: Refactor polaris to make it more compatible with other oss projects * INS-2798: Refactor polaris to make it more compatible with other oss projects * Fix
12 lines
435 B
Bash
Executable File
12 lines
435 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
go run main.go dashboard --port 3000 --audit-path ./pkg/config/examples &
|
|
sleep 30
|
|
curl -f http://localhost:3000 > /dev/null
|
|
curl -f http://localhost:3000/health > /dev/null
|
|
curl -f http://localhost:3000/favicon.ico > /dev/null
|
|
curl -f http://localhost:3000/static/css/main.css > /dev/null
|
|
curl -f http://localhost:3000/results.json > /dev/null
|
|
curl -f http://localhost:3000/details/security > /dev/null
|