| #!/bin/bash | |
| # QUANTARION φ⁴³ + AQARION DUAL-REPO PRODUCTION DEPLOYMENT | |
| # github.com/Quantarion13/{Quantarion,Aqarion-HFS-Moneo_Repo} | |
| set -euo pipefail | |
| export φ43=1.910201770844925 | |
| echo "🚀 QUANTARION φ⁴³ DUAL-GITHUB PRODUCTION LAUNCH" | |
| echo "═══════════════════════════════════════════════════════" | |
| # Clone dual GitHub repos | |
| git clone https://github.com/Quantarion13/Quantarion.git /quantarion | |
| git clone https://github.com/Quantarion13/Aqarion-HFS-Moneo_Repo.git /aqarion | |
| # Build core images | |
| cd /quantarion && docker build -f Aqarion-Core-Dockerfile -t aqarion13/quantarion-core:latest . | |
| cd /aqarion && docker build -f Aqarion-Core-Dockerfile -t aqarion13/moneo-swarm:latest . | |
| # Deploy 15x Docker Swarm services | |
| docker stack deploy -c /aqarion/docker-compose.aqarion.yml aqarion-swarm --with-registry-auth | |
| # Verify production status | |
| sleep 30 | |
| docker service ls | grep aqarion | wc -l | grep -q 15 && echo "✅ 15/15 SERVICES LIVE" | |
| curl -s localhost:8080/health | grep -q "φ43=1.910201770844925" && echo "✅ φ⁴³ PRODUCTION VERIFY" | |
| echo "🏆 QUANTARION + AQARION DUAL-REPO SWARM → 268,537 cycles/sec LIVE" | |
| echo "API: http://localhost:8080 | Dashboard: http://localhost:8080/metrics" |