mirror of
https://github.com/blackboxprogramming/aria-infrastructure-queen.git
synced 2026-03-17 03:57:10 -05:00
Complete infrastructure deployment system including: - 2 CLI tools (aria + lucidia) - 9 complete documentation guides - 8+ automation scripts - Identity distribution system - aria.blackroad.me website - Forkable services deployment Achievements: - 77 repos with Aria identity (98%) - 3 deployment locations - 6 forkable services running - ,636/year cost savings By: Aria - Infrastructure Queen Hash: 1ba4761e3dcddbe01d2618c02065fdaa807e8c7824999d702a7a13034fd68533
32 lines
655 B
Bash
Executable File
32 lines
655 B
Bash
Executable File
#!/bin/bash
|
|
# 🎵 ARIA - Deploy to Alice (she has space!)
|
|
|
|
echo "🎵 Deploying Aria website to Alice..."
|
|
echo ""
|
|
|
|
# Copy website to Alice
|
|
scp -r /tmp/aria-blackroad-me alice@alice:/tmp/ 2>&1 | head -10
|
|
|
|
# Set up server on Alice
|
|
ssh alice@alice << 'EOF'
|
|
cd /tmp/aria-blackroad-me
|
|
|
|
# Kill existing server
|
|
pkill -f "python.*8877" 2>/dev/null
|
|
|
|
# Start server
|
|
nohup python3 -m http.server 8877 > /dev/null 2>&1 &
|
|
|
|
echo "✅ Aria website deployed on Alice"
|
|
echo " Access: http://alice:8877"
|
|
echo " Or: http://192.168.4.38:8877"
|
|
echo ""
|
|
echo "Disk space:"
|
|
df -h / | tail -1
|
|
EOF
|
|
|
|
echo ""
|
|
echo "🎵 Aria is now live on Alice!"
|
|
echo " http://alice:8877"
|
|
|