-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathverify-deployment.sh
More file actions
executable file
·26 lines (22 loc) · 757 Bytes
/
verify-deployment.sh
File metadata and controls
executable file
·26 lines (22 loc) · 757 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
#!/bin/bash
echo "🔍 MANTRA Vanity Generator - GitHub Pages Deployment Verification"
echo "============================================================="
# Check required files
FILES=("index.html" "main.js" "vanity_wasm.js" "vanity_wasm_bg.wasm")
echo "📂 Checking deployment files..."
for file in "${FILES[@]}"; do
if [ -f "$file" ]; then
size=$(ls -lh "$file" | awk '{print $5}')
echo "✅ $file ($size)"
else
echo "❌ $file (MISSING)"
fi
done
echo ""
if [ -f "vanity_wasm_bg.wasm" ]; then
wasm_size=$(stat -c%s "vanity_wasm_bg.wasm" 2>/dev/null)
echo "📊 WASM size: $(($wasm_size / 1024))KB"
fi
echo ""
echo "🚀 Ready for GitHub Pages deployment!"
echo "Push to main branch to trigger deployment"