exocore-docs / docs /editor /00-panel-gate.md
ChoruYt's picture
Upload 151 files
dc2b30a verified
|
Raw
History Blame Contribute Delete
1.07 kB

00 — Panel gate

First-touch screen at /exocore/. Until a panel-devs master account exists in devs.json, every other route is locked behind this gate. The form doubles as both the register-master flow (when the file is empty) and the unlock flow (when an account is already provisioned).

Screenshots

Desktop Mobile
00 — Panel gate — desktop 00 — Panel gate — mobile

What it does

  • POST /exocore/api/access/panel/register (first run) → writes the salted master credential into devs.json.

  • POST /exocore/api/access/panel/unlock (subsequent runs) → returns a short-lived panel cookie used by every other route.

  • All other client routes redirect here while the cookie is missing.

    Source files

  • routes/access/panel.ts


    ← Back to the editor index.