# Push updates to Gitea **All three repos have been pushed to Gitea** (using `GITEA_TOKEN` from repo root `.env`). For future pushes from repo root (with `.env` containing `GITEA_TOKEN`): ```bash # 1. Explorer monorepo cd explorer-monorepo && git push gitea master # 2. Metamask integration (gitea remote added) cd metamask-integration && git push gitea main # 3. Parent proxmox (submodule pointers) cd /path/to/proxmox && git push gitea master ``` Or use the helper script (sources `.env` for token): ```bash cd explorer-monorepo && bash ../scripts/dev-vm/push-to-gitea.sh cd metamask-integration && REPO_NAME=metamask-integration bash ../scripts/dev-vm/push-to-gitea.sh cd proxmox && bash scripts/dev-vm/push-to-gitea.sh ``` --- **What was pushed** - **explorer-monorepo** (`master`): nginx `/snap` fix, `apply-nginx-snap-vmid5000.sh`, RUNBOOK, verify script and docs. - **metamask-integration** (`main`): full Chain 138 Snap tree under `chain138-snap/` (deploy/verify, CI, runbook, security, version/health). Gitea remote added. - **proxmox** (`master`): updated submodule pointers for `explorer-monorepo` and `metamask-integration`.