🎵 Initial commit: Aria Infrastructure Queen

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
This commit is contained in:
Alexa Louise
2025-12-23 20:22:04 -06:00
commit d97c7b93e0
23 changed files with 4138 additions and 0 deletions

31
scripts/deploy-to-alice.sh Executable file
View File

@@ -0,0 +1,31 @@
#!/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"