Installation

Install the Shipyard CLI on macOS, Linux, or build from source.

Quick install (recommended)

Run the install script to download the latest binary for your platform:

Terminal
curl -fsSL https://shipyard.wtf/install | sh

This installs the shipyard binary to ~/.shipyard/bin/ and adds it to your PATH.

Homebrew (macOS)

Terminal
brew tap DecOperations/shipyard
brew install shipyard

Build from source

Shipyard is built with Rust. You'll need cargo installed (rustup.rs).

Terminal
git clone https://github.com/DecOperations/shipyard.wtf.git
cd shipyard.wtf/cli
cargo build --release
cp target/release/shipyard ~/.local/bin/

Verify installation

Terminal
shipyard --version
# shipyard 0.1.0

Requirements

  • OS: macOS (Apple Silicon / Intel) or Linux (x86_64 / arm64)
  • For deployment: A running Shipyard API instance (see Self-Hosting)
  • For building: Your project's build toolchain (Node.js, pnpm/npm/yarn, etc.)

Next steps