Installation
Install the Devver CLI on macOS, Linux, or Windows.
Requirements
- Bun ≥ 1.0 (for building from source)
- Git (required for
deployandproject link) - A Devver account
Install from npm
npm install -g @devver/cli# or with bun
bun add -g @devver/cliVerify the installation:
devver --versionInstall from Homebrew (macOS / Linux)
brew install Devver-Inc/tap/devverDownload a pre-built binary
Pre-compiled binaries are available for every release on the GitHub releases page.
| Platform | Architecture | File |
|---|---|---|
| macOS | Apple Silicon | devver-darwin-arm64 |
| macOS | Intel | devver-darwin-x64 |
| Linux | x86_64 | devver-linux-x64 |
| Linux | ARM64 | devver-linux-arm64 |
| Windows | x86_64 | devver-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