Spaces:
Build error
Build error
File size: 519 Bytes
0bfe2e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/bash
# AIOStreams Cloudflare Load Balancer Deployment Script
echo "=== AIOStreams Cloudflare Load Balancer Deployment ==="
echo "Installing dependencies..."
npm install
echo "Building and deploying worker..."
npx wrangler deploy
echo "=== Deployment Complete ==="
echo "Your load balancer is now deployed to Cloudflare."
echo "Make sure to set up appropriate DNS records pointing aiostreams.example.com to your worker."
echo ""
echo "Test your deployment with:"
echo "curl -I https://aiostreams.example.com" |