ccxCloud public command centercc.xc0.sh · remote-safe setup snippets
public bootstrap endpoint

Remote-safe commands for deployments and setup work.

Use this page for public, non-secret scripts and copy-ready bootstrap commands you may need from fresh machines, VPS consoles, remote rescue shells, or during deployments.

Rule: never publish secrets, private keys, tokens, internal-only credentials, or destructive one-liners here. Pin script URLs or commits before using this for production bootstrap flows.

Health check

Confirm the public web stack is reachable.

curl -fsS https://cc.xc0.sh
curl -I https://dash.xc0.sh
curl -I https://status.xc0.sh

Fetch pattern

Preferred pattern for future scripts hosted under this site.

curl -fsSL https://cc.xc0.sh/scripts/name.sh -o /tmp/name.sh
less /tmp/name.sh
bash /tmp/name.sh

Remote deploy note

Use the private repo for source of truth; keep this public page as bootstrap convenience only.

git clone git@github.com:xcloud-gg/heimdall0-web.git
cd heimdall0-web
bash scripts/validate.sh .env

Planned script library

Add reviewed scripts under sites/cc/scripts/ later. Good candidates are package bootstrap helpers, connectivity checks, host preparation checks, and one-shot diagnostics. Bad candidates are anything containing secrets or anything that can brick a host without review.

Open source repo