BabelizeBabelize
CLI

Installation & Setup

Install the Babelize CLI and connect it to your account.

Install

# Global install
npm install -g @babelize/cli

# yarn
yarn global add @babelize/cli

# Run without installing
npx @babelize/cli --help

Login

After installation, log in to your Babelize account:

babelize auth login

You'll be prompted for your email and password. Your credentials are stored securely in your config directory (~/.config/babelize).

Login with flags (non-interactive)

babelize auth login --email you@example.com --password yourpassword

Connect to a different API URL

babelize auth login --api-url https://api.babelize.co

Verify the connection

# Check who you're logged in as
babelize auth whoami

# Check API health
babelize status

# Deep health check (verifies DB, Redis, queues)
babelize status --deep

Configuration

LocationContents
~/.config/babelize/config.jsonEncrypted credentials and API URL

You can override the API URL at runtime with --api-url:

babelize projects list --api-url http://localhost:3001/api

Logout

babelize auth logout

This revokes your session on the server and clears local credentials.

Last updated: 2026-06-19

How is this guide?

On this page