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