forked from humancto/CollabCode
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy.sh
More file actions
Latest commit
executable file
·22 lines (18 loc) · 550 Bytes
/
Copy pathdeploy.sh
File metadata and controls
executable file
·22 lines (18 loc) · 550 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
# Simple deployment script for OpenCollab to Vercel
echo"🚀 Deploying OpenCollab to Vercel..."
echo"====================================="
# Deploy to production
vercel --prod --yes
echo""
echo"✅ Deployment complete!"
echo""
echo"🔗 Your app is now live on Vercel!"
echo""
echo"📝 Remember to set environment variables in Vercel Dashboard:"
echo" - ADMIN_EMAIL"
echo" - ADMIN_PASSWORD_HASH"
echo" - JWT_SECRET"
echo" - FIREBASE_PROJECT_ID"
echo" - FIREBASE_CLIENT_EMAIL"
echo" - FIREBASE_PRIVATE_KEY"