Skip to content
Last updated

The Caraer CLI (caraer-cli) is the downloadable developer tool for managing Caraer apps, webhooks, serverless functions, schedules, inbound routes, and local developer projects.

Install

pipx install caraer-cli
# or from a local checkout:
pip install -e ".[dev]"

Core workflows

caraer auth login --email you@example.com
caraer company select <company-uuid>
caraer apps init --label "My Sync App"
cd my_sync_app
caraer apps add function sync-handler
caraer apps add schedule renew-watch --function sync-handler
caraer apps add inbound provider-push --function sync-handler
caraer apps push --deploy
caraer apps local logs
caraer apps local dev
caraer sandbox create --name my-sandbox

Developer project mutations require the app creator company (or super-admin). Knowing an app UUID alone is not authorization.

Typed serverless payloads live in the Caraer clients (@caraer/client / caraer-client).