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
670 B
Bash
Executable File
32 lines
670 B
Bash
Executable File
#!/bin/bash
|
|
# 🎵 ARIA - Deploy to Lucidia too!
|
|
|
|
echo "🎵 Deploying Aria website to Lucidia..."
|
|
echo ""
|
|
|
|
# Copy website to Lucidia
|
|
scp -r /tmp/aria-blackroad-me lucidia@lucidia:/tmp/ 2>&1 | head -10
|
|
|
|
# Set up server on Lucidia
|
|
ssh lucidia@lucidia << 'EOF'
|
|
cd /tmp/aria-blackroad-me
|
|
|
|
# Kill existing server
|
|
pkill -f "python.*8866" 2>/dev/null
|
|
|
|
# Start server
|
|
nohup python3 -m http.server 8866 > /dev/null 2>&1 &
|
|
|
|
echo "✅ Aria website deployed on Lucidia"
|
|
echo " Access: http://lucidia:8866"
|
|
echo " Or: http://192.168.4.99:8866"
|
|
echo ""
|
|
echo "Disk space:"
|
|
df -h / | tail -1
|
|
EOF
|
|
|
|
echo ""
|
|
echo "🎵 Aria is now live on Lucidia too!"
|
|
echo " http://lucidia:8866"
|
|
|