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
6 changes: 3 additions & 3 deletions .github/workflows/brainsnn-app-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
sleep 1
done
curl -sf http://127.0.0.1:8080/healthz | grep -q '"status":"ok"'
curl -sf http://127.0.0.1:8080/ | grep -Fq "BrainSNN | Decision Engine for Brand Content"
curl -sf http://127.0.0.1:8080/ | grep -Fq "GaugeGap Foundry | Play with the impossible"
kill $SRV 2>/dev/null || true

deploy:
Expand Down Expand Up @@ -113,14 +113,14 @@ jobs:
for i in $(seq 1 30); do
health="$(curl -L -s -o /dev/null -w '%{http_code}' "$HEALTH_URL" || true)"
home="$(curl -L -s -o /tmp/brainsnn-home.html -w '%{http_code}' "$HOME_URL" || true)"
if [ "$home" = "200" ] && grep -Fq "BrainSNN | Decision Engine for Brand Content" /tmp/brainsnn-home.html; then
if [ "$home" = "200" ] && grep -Fq "GaugeGap Foundry | Play with the impossible" /tmp/brainsnn-home.html; then
home_marker="ok"
else
home_marker="missing"
fi
echo "attempt $i → healthz $health, home $home/$home_marker"
if [ "$health" = "200" ] && [ "$home_marker" = "ok" ]; then
echo "Live service is healthy and serving the current build."
echo "Live service is healthy and serving the current GaugeGap build."
exit 0
fi
sleep 20
Expand Down
14 changes: 7 additions & 7 deletions brainsnn-r3f-app/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions brainsnn-r3f-app/public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "BrainSNN",
"short_name": "BrainSNN",
"description": "Affective Intelligence for Online Content powered by Spiking Neural Networks and Crumb LLM.",
"name": "GaugeGap Foundry by BrainSNN",
"short_name": "GaugeGap",
"description": "Playable science, visual challenges and reproducible research experiments by BrainSNN.",
"start_url": "/",
"display": "standalone",
"background_color": "#06060a",
"theme_color": "#06060a",
"background_color": "#030308",
"theme_color": "#030308",
"icons": [
{ "src": "/favicon.svg", "type": "image/svg+xml", "sizes": "any" }
]
Expand Down
Loading