-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanual-deploy.sh
More file actions
30 lines (25 loc) · 828 Bytes
/
manual-deploy.sh
File metadata and controls
30 lines (25 loc) · 828 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
#!/bin/bash
# Manual deployment script - Run this on your local machine
echo "🚀 Execution Protocol - Manual Deploy"
echo "======================================"
echo ""
# Clone the repo fresh
echo "📥 Cloning repo..."
git clone https://github.com/achilliesbot/execution-protocol.git
cd execution-protocol
# Pull latest from container (if accessible)
# Or manually copy files from container at:
# /data/.openclaw/workspace/execution-acp-service/
echo ""
echo "📤 Pushing to GitHub..."
git add -A
git commit -m "Deploy: Mobile-friendly site with hamburger menu"
git push origin main
echo ""
echo "✅ Done! Site will auto-deploy to:"
echo " https://execution-protocol.onrender.com/"
echo ""
echo "📱 Mobile features:"
echo " - Hamburger menu (☰)"
echo " - Responsive navigation"
echo " - Touch-optimized"