Files
proxmox/scripts/README-HYBX-SYNC.md

42 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

# HYBX sidecars sync to Gitea
## Complete everything (run in your terminal)
**1. Finish docs-for-sidecars merge and push** (merge is prepared; README already resolved):
```bash
cd /home/intlc/projects/HYBX_Sidecars/docs-for-sidecars
bash scripts/complete-merge-and-push.sh
```
**2. Sync all nine sidecars** (pull from gitea then push):
```bash
cd /home/intlc/projects/proxmox
bash scripts/push-hybx-sidecars-to-gitea.sh --sync
```
## Sync one repo at a time
```bash
cd /home/intlc/projects/proxmox
# Replace REPO with one of: mifos-fineract-sidecar, mt103-hardcopy-sidecar, off-ledger-2-on-ledger-sidecar, securitization-engine-sidecar, card-networks-sidecar, securities-sidecar, flash-loan-xau-sidecar, server-funds-sidecar, docs-for-sidecars
bash scripts/push-hybx-sidecars-to-gitea.sh --sync REPO
# Or without pull: bash scripts/push-hybx-sidecars-to-gitea.sh REPO
```
Or run all nine in sequence (one-by-one):
```bash
cd /home/intlc/projects/proxmox
bash scripts/sync-hybx-sidecars-one-by-one.sh --sync
```
## Single-repo push (no pull)
```bash
bash scripts/push-hybx-sidecars-to-gitea.sh docs-for-sidecars
```
`GITEA_TOKEN` is loaded from the proxmox repo root `.env` when you run these scripts.