forked from JosephOnuh/ajosave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush-features.sh
More file actions
executable file
·31 lines (24 loc) · 1.06 KB
/
Copy pathpush-features.sh
File metadata and controls
executable file
·31 lines (24 loc) · 1.06 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
#!/bin/bash
# Script to push all feature branches for issues #116, #117, #118, #120
# Run this script after authenticating with GitHub
echo "Pushing feature branches to remote..."
# Push multi-currency support (Issue #116)
echo "Pushing feature/multi-currency-support..."
git push -u origin feature/multi-currency-support
# Push on-chain reputation (Issue #117)
echo "Pushing feature/onchain-reputation..."
git push -u origin feature/onchain-reputation
# Push email notifications (Issue #118)
echo "Pushing feature/email-notifications..."
git push -u origin feature/email-notifications
# Push real-time streaming (Issue #120)
echo "Pushing feature/realtime-horizon-streaming..."
git push -u origin feature/realtime-horizon-streaming
echo "All feature branches pushed successfully!"
echo ""
echo "Next steps:"
echo "1. Create pull requests for each branch on GitHub"
echo "2. Review and merge the PRs"
echo "3. Run database migrations"
echo "4. Install new dependencies: npm install resend socket.io socket.io-client"
echo "5. Update environment variables (see .env.example)"