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 --helpLogin
After installation, log in to your Babelize account:
babelize auth loginYou'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 yourpasswordConnect to a different API URL
babelize auth login --api-url https://api.babelize.coVerify 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 --deepConfiguration
| Location | Contents |
|---|---|
~/.config/babelize/config.json | Encrypted credentials and API URL |
You can override the API URL at runtime with --api-url:
babelize projects list --api-url http://localhost:3001/apiLogout
babelize auth logoutThis revokes your session on the server and clears local credentials.
Last updated: 2026-06-19
How is this guide?