Spaces:
Sleeping
Sleeping
File size: 703 Bytes
2798672 596bc67 2798672 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #!/bin/bash
# s
set -e # Exit on error
echo "🚀 Starting deployment process..."
# 1. Build the project
echo "📦 Building project..."
npm run build
# 2. Deploy to Cloudflare
echo "☁️ Deploying to Cloudflare..."
npx wrangler deploy
# 3. Upload to Hugging Face
echo "🤗 Uploading to Hugging Face..."
/home/u0_a369/.local/bin/hf upload Jaimodiji/my-multiplayer-app . . \
--repo-type space \
--exclude "node_modules/*" \
--exclude "dist/*" \
--exclude ".wrangler/*" \
--exclude ".git/*" \
--exclude ".env" \
--exclude ".dev.vars" \
--exclude "temp/*" \
--exclude "restored_files/*" \
--exclude "*.sqlite" \
--exclude "*.log"
echo "✅ Deployment completed successfully!"
|