Files
proxmox/scripts/README-HYBX-SYNC.md
defiQUG bea1903ac9
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
Sync all local changes: docs, config, scripts, submodule refs, verification evidence
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-21 15:46:06 -08:00

42 lines
1.2 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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.