-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
executable file
·42 lines (32 loc) · 853 Bytes
/
deploy.sh
File metadata and controls
executable file
·42 lines (32 loc) · 853 Bytes
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
34
35
36
37
38
39
40
41
42
#!/bin/bash
# AIX Format - Vercel Deployment Script
# This script will deploy the project to Vercel using CLI
set -e
echo "🚀 AIX Format Deployment"
echo "========================"
echo ""
# Check if vercel CLI is installed
if ! command -v vercel &> /dev/null; then
echo "📦 Installing Vercel CLI..."
npm install -g vercel@latest
fi
echo "✅ Vercel CLI ready"
echo ""
# Login to Vercel (will open browser)
echo "🔐 Logging in to Vercel..."
vercel login
echo ""
echo "🔗 Linking project..."
vercel link --yes
echo ""
echo "🏗️ Building and deploying to production..."
vercel --prod
echo ""
echo "✅ Deployment complete!"
echo ""
echo "📊 Check deployment status:"
echo " https://vercel.com/moeabdelaziz007/aix-format/deployments"
echo ""
echo "🌐 Live site:"
echo " https://axiomid.app"
# Made with Moe Abdelaziz