Install the CLI
Install the Wajub CLI on macOS, Linux, or Windows, then authenticate it with your account.
6 min read
Install
Installation
# macOS (Homebrew)
brew install wajub/tap/wajub
# Linux (script)
curl -fsSL https://cli.wajub.com/install.sh | sh
# Docker
docker run ghcr.io/wajubhq/cli
# Windows (Scoop)
scoop bucket add wajub https://github.com/wajub/scoop-bucket
scoop install wajubAuthenticate
wajub login opens your browser to link the CLI to your account. Tokens are stored
securely in your system keychain.
wajub login
# › Press Enter to open the browser…
# ✓ Logged in as hello@example.com (sandbox)Choose the environment
By default the CLI targets sandbox. Create named profiles for each environment:
wajub config set sandbox --secret-key sk_test.xxx creates a sandbox profile,
wajub config use sandbox sets it as default, wajub config lists all profiles.
Use --profile <name> to switch profiles ad-hoc, or --api-key <key> in CI.
Configuration
wajub config set <profile>commandoptionalCreate or update a profile. Flags: --secret-key=<key>, --default.
wajub config use <profile>commandoptionalSet the default profile.
wajub configcommandoptionalList configured profiles.
wajub logoutcommandoptionalRemove local tokens. --all for all profiles.