Spaces:
Sleeping
Sleeping
File size: 614 Bytes
18ea885 |
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 32 33 |
#!/bin/bash
echo "π Deploying v0 Landing Page Clone"
echo "=================================="
echo ""
cd /workspace/v0-nextjs-new
# Check if node_modules exists
if [ ! -d "node_modules" ]; then
echo "π¦ Installing dependencies..."
npm install
fi
echo ""
echo "ποΈ Building project..."
npm run build
if [ $? -eq 0 ]; then
echo ""
echo "β
Build successful!"
echo ""
echo "π€ Deploying to Vercel..."
npx vercel --prod --yes
echo ""
echo "π Deployment complete!"
else
echo ""
echo "β Build failed. Please check the errors above."
exit 1
fi
|