-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck-status.sh
More file actions
30 lines (23 loc) · 777 Bytes
/
check-status.sh
File metadata and controls
30 lines (23 loc) · 777 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
# Auto-deploy script for Execution Protocol
# Run this to deploy to Render
echo "🚀 Execution Protocol Auto-Deploy"
echo "=================================="
echo ""
# Files are ready at: /data/.openclaw/workspace/execution-acp-service/
# Copy these to your repo and push:
cd /data/.openclaw/workspace/execution-acp-service
echo "📁 Files ready for deployment:"
ls -la *.html 2>/dev/null || echo " (run 'cp docs-site/* .' first)"
echo ""
echo "🔧 Current Git Status:"
git status --short
echo ""
echo "📤 To deploy, run these commands:"
echo ""
echo " git add -A"
echo " git commit -m 'Deploy: Mobile-friendly site'"
echo " git push origin master"
echo ""
echo "✅ After push, site deploys to:"
echo " https://execution-protocol.onrender.com/"