Quickstart
From a fresh repo to a signed artifact in a registry — in under 5 minutes.
1. Install the CLI
npm install -g @catalyst/cli
catalyst login2. Initialize a project
This creates a catalyst.yml with sensible defaults for your stack.
cd ./my-app
catalyst init --template=node3. Build & push
catalyst build --push
→ artifact://my-app/web@0.1.0 signed ✓4. Promote
Promote the exact same artifact to staging or production — no rebuild needed.
catalyst promote my-app/web@0.1.0 --to=production