nuzur CLI

A command-line tool for managing local agents, running extensions, deploying to production, and interacting with your nuzur projects from the terminal.

Install

One-line install (macOS & Linux)

The recommended way to install. Downloads the latest release for your OS and architecture, verifies its sha256 checksum, and installs nuzur-cli plus the nuzur alias — no sudo needed.

curl -fsSL https://nuzur.com/install.sh | sh

Need a specific version? Pin it: curl -fsSL https://nuzur.com/install.sh | NUZUR_VERSION=v1.6.1 sh

On Windows, use Scoop below — or run the one-line install inside WSL.

Other ways to install

macOS

Install via Homebrew. Works on both Intel and Apple Silicon. Homebrew.

brew install nuzur/tap/nuzur-cli

To upgrade later: brew upgrade nuzur/tap/nuzur-cli

Linux

Download the latest binary for your architecture from the GitHub releases page.

Download from GitHub releases

Available for x86_64 and arm64. Extract the archive and move nuzur-cli to a directory on your $PATH.

Windows

Install via Scoop. First add the nuzur bucket, then install.

scoop bucket add nuzur https://github.com/nuzur/scoop-bucket
scoop install nuzur-cli

To upgrade later: scoop update nuzur-cli

No Scoop? Download the .zip from the GitHub releases page, extract it, and add nuzur-cli.exe to your PATH.

Verify the installation

After installing, confirm the CLI is on your path:

nuzur-cli --version

What you can do with the CLI

Local agents

Pair your own computer or a server (VPS) as a local agent and connect self-hosted databases directly to the nuzur Data Manager — without exposing credentials to the cloud.

Read the docs →

Extensions

Run any extension from the terminal, not just generators — import schemas, push changes to your databases, and generate code (SQL, Protobuf, Go) with run-extension.

Read the docs →

Deploy

Ship your project to production with a single command. nuzur-cli deploy provisions a server through your own provider CLI, sets up the database, builds the app, and serves it over HTTPS.

Explore deploy →

Open source

The CLI is open source under the MIT license. Browse the code, open issues, or contribute on GitHub.

View on GitHub →

Ready to get started?

Install the CLI and connect your self-hosted database in minutes — the machine is paired automatically on first connection, whether it's your laptop or a VPS.

Read the local agent guide