Some checks failed
AITBC CI/CD Pipeline / lint-and-test (3.11) (push) Has been cancelled
AITBC CI/CD Pipeline / lint-and-test (3.12) (push) Has been cancelled
AITBC CI/CD Pipeline / lint-and-test (3.13) (push) Has been cancelled
AITBC CI/CD Pipeline / test-cli (push) Has been cancelled
AITBC CI/CD Pipeline / test-services (push) Has been cancelled
AITBC CI/CD Pipeline / test-production-services (push) Has been cancelled
AITBC CI/CD Pipeline / security-scan (push) Has been cancelled
AITBC CI/CD Pipeline / build (push) Has been cancelled
AITBC CI/CD Pipeline / deploy-staging (push) Has been cancelled
AITBC CI/CD Pipeline / deploy-production (push) Has been cancelled
AITBC CI/CD Pipeline / performance-test (push) Has been cancelled
AITBC CI/CD Pipeline / docs (push) Has been cancelled
AITBC CI/CD Pipeline / release (push) Has been cancelled
AITBC CI/CD Pipeline / notify (push) Has been cancelled
Security Scanning / Bandit Security Scan (apps/coordinator-api/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (cli/aitbc_cli) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-core/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-crypto/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (packages/py/aitbc-sdk/src) (push) Has been cancelled
Security Scanning / Bandit Security Scan (tests) (push) Has been cancelled
Security Scanning / CodeQL Security Analysis (javascript) (push) Has been cancelled
Security Scanning / CodeQL Security Analysis (python) (push) Has been cancelled
Security Scanning / Dependency Security Scan (push) Has been cancelled
Security Scanning / Container Security Scan (push) Has been cancelled
Security Scanning / OSSF Scorecard (push) Has been cancelled
Security Scanning / Security Summary Report (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-cli-level1 (3.11) (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-cli-level1 (3.12) (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-cli-level1 (3.13) (push) Has been cancelled
AITBC CLI Level 1 Commands Test / test-summary (push) Has been cancelled
- Remove debugging service documentation (DEBUgging_SERVICES.md) - Remove development logs policy and quick reference guides - Remove E2E test creation summary - Remove gift certificate example file - Remove GitHub pull summary documentation
56 lines
1.8 KiB
Bash
56 lines
1.8 KiB
Bash
#!/bin/bash
|
|
|
|
echo "🚀 Deploying AITBC for Production..."
|
|
|
|
# 1. Setup production assets
|
|
echo "📦 Setting up production assets..."
|
|
bash setup-production-assets.sh
|
|
|
|
# 2. Copy assets to server
|
|
echo "📋 Copying assets to server..."
|
|
scp -r assets/ aitbc:/var/www/html/
|
|
|
|
# 3. Update Nginx configuration
|
|
echo "⚙️ Updating Nginx configuration..."
|
|
ssh aitbc "cat >> /etc/nginx/sites-available/aitbc.conf << 'EOF'
|
|
|
|
# Serve production assets
|
|
location /assets/ {
|
|
alias /var/www/html/assets/;
|
|
expires 1y;
|
|
add_header Cache-Control \"public, immutable\";
|
|
add_header X-Content-Type-Options nosniff;
|
|
|
|
# Gzip compression
|
|
gzip on;
|
|
gzip_types text/css application/javascript image/svg+xml;
|
|
}
|
|
|
|
# Security headers
|
|
add_header Referrer-Policy \"strict-origin-when-cross-origin\" always;
|
|
add_header X-Frame-Options \"SAMEORIGIN\" always;
|
|
add_header X-Content-Type-Options \"nosniff\" always;
|
|
EOF"
|
|
|
|
# 4. Reload Nginx
|
|
echo "🔄 Reloading Nginx..."
|
|
ssh aitbc "nginx -t && systemctl reload nginx"
|
|
|
|
# 5. Update Exchange page to use production assets
|
|
echo "🔄 Updating Exchange page..."
|
|
scp apps/trade-exchange/index.prod.html aitbc:/root/aitbc/apps/trade-exchange/index.html
|
|
|
|
# 6. Update Marketplace page
|
|
echo "🔄 Updating Marketplace page..."
|
|
sed -i 's|https://cdn.tailwindcss.com|/assets/js/tailwind.js|g' apps/marketplace-ui/index.html
|
|
sed -i 's|https://unpkg.com/axios/dist/axios.min.js|/assets/js/axios.min.js|g' apps/marketplace-ui/index.html
|
|
sed -i 's|https://unpkg.com/lucide@latest|/assets/js/lucide.js|g' apps/marketplace-ui/index.html
|
|
scp apps/marketplace-ui/index.html aitbc:/root/aitbc/apps/marketplace-ui/
|
|
|
|
echo "✅ Production deployment complete!"
|
|
echo ""
|
|
echo "📝 Next steps:"
|
|
echo "1. Restart services: ssh aitbc 'systemctl restart aitbc-exchange aitbc-marketplace-ui'"
|
|
echo "2. Clear browser cache"
|
|
echo "3. Test all pages"
|