The installer served at GET /decdn.sh downloads the decdn and onramp binaries from {gateway}/dl/<bin>-<os>-<arch>, but that route is not implemented yet — it 404s.
Where: crates/server/assets/decdn.sh (curl loop), crates/server/src/http/installer.rs (serves the templated script).
Fix: serve the release binaries — either a static file server over a releases/ dir, or redirect /dl/... to GitHub Releases once the repo is public. Blocks the curl https://up.decdn.org/decdn.sh | sh flow from actually installing.
Pre-public-launch; not a merge blocker. Found in the final whole-branch review.
The installer served at
GET /decdn.shdownloads thedecdnandonrampbinaries from{gateway}/dl/<bin>-<os>-<arch>, but that route is not implemented yet — it 404s.Where:
crates/server/assets/decdn.sh(curl loop),crates/server/src/http/installer.rs(serves the templated script).Fix: serve the release binaries — either a static file server over a
releases/dir, or redirect/dl/...to GitHub Releases once the repo is public. Blocks thecurl https://up.decdn.org/decdn.sh | shflow from actually installing.Pre-public-launch; not a merge blocker. Found in the final whole-branch review.