Devver Docs

Installation

Install the Devver CLI on macOS, Linux, or Windows.

Requirements

  • Bun ≥ 1.0 (for building from source)
  • Git (required for deploy and project link)
  • A Devver account

Install from npm

npm install -g @devver/cli
# or with bun
bun add -g @devver/cli

Verify the installation:

devver --version

Install from Homebrew (macOS / Linux)

brew install Devver-Inc/tap/devver

Download a pre-built binary

Pre-compiled binaries are available for every release on the GitHub releases page.

PlatformArchitectureFile
macOSApple Silicondevver-darwin-arm64
macOSInteldevver-darwin-x64
Linuxx86_64devver-linux-x64
LinuxARM64devver-linux-arm64
Windowsx86_64devver-windows-x64.exe

Download the binary for your platform, make it executable, and move it to your PATH:

# Example for macOS Apple Silicon
curl -L https://github.com/Devver-Inc/cli/releases/latest/download/devver-darwin-arm64 -o devver
chmod +x devver
sudo mv devver /usr/local/bin/

Build from source

git clone https://github.com/Devver-Inc/cli.git
cd cli
bun install
bun build ./src/index.tsx --compile --outfile devver
sudo mv devver /usr/local/bin/

Global option

Every command accepts a --api-url flag to override the default API base URL:

devver --api-url https://api.my-devver-instance.com deploy

On this page