Installation
Install the latest release:
curl -fsSL https://tryorch.dev/install | shThe installer detects your operating system and architecture, downloads the matching release asset from GitHub, verifies the checksum when the release publishes one, and installs orch into ~/.local/bin by default.
Requirements
Section titled “Requirements”- macOS or Linux
curltar- Any tools required by the adapters you use, such as Docker, Terraform, or AWS CLI
Options
Section titled “Options”Install a specific release:
curl -fsSL https://tryorch.dev/install | ORCH_VERSION=v0.1.0 shInstall into a custom directory:
curl -fsSL https://tryorch.dev/install | ORCH_INSTALL_DIR=/usr/local/bin shIf orch is installed into ~/.local/bin, make sure that directory is on your PATH.
You can also build from source.
From the repository root:
go build -o bin/orch ./cmd/orchCheck the CLI:
bin/orch versionDocumentation Site
Section titled “Documentation Site”The docs site is a separate Starlight app:
cd docsnpm installnpm run dev