v0-landing-final / deploy.sh
likhonsheikh's picture
Deploy Next.js v0.dev clone with shadcn/ui and Geist design system
18ea885 verified
raw
history blame contribute delete
614 Bytes
#!/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