-
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 (34 loc) · 1.1 KB
/
deploy.sh
File metadata and controls
executable file
·42 lines (34 loc) · 1.1 KB
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
# Quick deploy script for Execution Protocol
echo "🚀 Execution Protocol - Quick Deploy"
echo "====================================="
echo ""
# Check if git is configured
if [ -z "$(git config --get user.email)" ]; then
echo "⚠️ Git not configured. Please run:"
echo " git config --global user.email 'you@example.com'"
echo " git config --global user.name 'Your Name'"
exit 1
fi
# Add all files
echo "📦 Adding files to git..."
git add -A
# Commit
echo "💾 Committing changes..."
git commit -m "Update: Mobile-friendly UI + documentation
- Added hamburger menu for mobile navigation
- Updated all 6 pages with responsive design
- Added GitHub Actions auto-deployment
- Updated render.yaml configuration
Ready for Render deployment"
# Push to GitHub
echo "📤 Pushing to GitHub..."
git push origin main
echo ""
echo "✅ Done! Your site will auto-deploy to:"
echo " https://execution-protocol.onrender.com/"
echo ""
echo "📱 The site is now mobile-friendly with:"
echo " - Hamburger menu (☰)"
echo " - Responsive navigation"
echo " - Touch-optimized buttons"