-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick_blackroad_test.sh
More file actions
91 lines (73 loc) · 2.61 KB
/
Copy pathquick_blackroad_test.sh
File metadata and controls
91 lines (73 loc) · 2.61 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/bin/bash
# 🚀 QUICK BLACKROAD STATUS CHECK...
echo "\ud83d\ude80 QUICK BLACKROAD STATUS CHECK..."
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
# Test all components quickly
echo "🧠 Lucidia:"
curl -I -s https://blackroad.io/lucidia/ | head -1
echo -e "\n🛡️ Guardian:"
curl -I -s https://blackroad.io/guardian/ | head -1
echo -e "\n📚 Codex:"
curl -I -s https://blackroad.io/codex/ | head -1
echo -e "\n🔐 Login:"
curl -I -s https://blackroad.io/login/ | head -1
echo -e "\n🏠 Main Site:"
curl -I -s https://blackroad.io/ | head -1
echo -e "\n📊 Dashboard:"
curl -I -s https://blackroad.io/dashboard.html | head -1
# Quick success count
echo -e "\n🎯 SUCCESS COUNT:"
success=0
if curl -I -s https://blackroad.io/lucidia/ | grep -q "200"; then
echo "✅ Lucidia working"
((success++))
fi
if curl -I -s https://blackroad.io/guardian/ | grep -q "200"; then
echo "✅ Guardian working"
((success++))
fi
if curl -I -s https://blackroad.io/codex/ | grep -q "200"; then
echo "✅ Codex working"
((success++))
fi
if curl -I -s https://blackroad.io/login/ | grep -q "200"; then
echo "✅ Login working"
((success++))
fi
if curl -I -s https://blackroad.io/ | grep -q "200"; then
echo "✅ Main Site working"
((success++))
fi
if curl -I -s https://blackroad.io/dashboard.html | grep -q "200"; then
echo "✅ Dashboard working"
((success++))
fi
echo -e "\n🏆 RESULT: $success/6 components online!"
if [ $success -eq 6 ]; then
echo -e "\n🎉 COMPLETE SUCCESS! ALL BLACKROAD APPS WORKING!"
elif [ $success -ge 4 ]; then
echo -e "\n🎉 MAJOR SUCCESS! Most apps working!"
elif [ $success -ge 2 ]; then
echo -e "\n🎯 Good progress! Core apps working!"
else
echo -e "\n🔧 Still working on getting more online..."
fi
echo -e "\n🌐 Access your working components at:"
if curl -I -s https://blackroad.io/lucidia/ | grep -q "200"; then
echo " 🧠 https://blackroad.io/lucidia/"
fi
if curl -I -s https://blackroad.io/guardian/ | grep -q "200"; then
echo " 🛡️ https://blackroad.io/guardian/"
fi
if curl -I -s https://blackroad.io/codex/ | grep -q "200"; then
echo " 📚 https://blackroad.io/codex/"
fi
if curl -I -s https://blackroad.io/login/ | grep -q "200"; then
echo " 🔐 https://blackroad.io/login/"
fi
if curl -I -s https://blackroad.io/ | grep -q "200"; then
echo " 🏠 https://blackroad.io/"
fi
if curl -I -s https://blackroad.io/dashboard.html | grep -q "200"; then
echo " 📊 https://blackroad.io/dashboard.html"
fi