Getting Started
Installation
Section titled “Installation”Pre-built binaries
Section titled “Pre-built binaries”Download the latest release from GitHub Releases for your platform.
# macOS (Apple Silicon)curl -Lo ancla https://github.com/SideQuest-Group/ancla-client/releases/latest/download/ancla_darwin_arm64chmod +x anclasudo mv ancla /usr/local/bin/
# macOS (Intel)curl -Lo ancla https://github.com/SideQuest-Group/ancla-client/releases/latest/download/ancla_darwin_amd64chmod +x anclasudo mv ancla /usr/local/bin/
# Linux (amd64)curl -Lo ancla https://github.com/SideQuest-Group/ancla-client/releases/latest/download/ancla_linux_amd64chmod +x anclasudo mv ancla /usr/local/bin/From source
Section titled “From source”Requires Go 1.24+.
go install github.com/SideQuest-Group/ancla-client/cmd/ancla@latestUsing uv (Python tool runner)
Section titled “Using uv (Python tool runner)”If you have uv and the ancla package published:
uvx anclaQuick start
Section titled “Quick start”1. Log in
Section titled “1. Log in”ancla loginThis opens your browser for authentication. See the Authentication guide for CI and manual options.
2. List your organizations
Section titled “2. List your organizations”ancla orgs list3. List projects
Section titled “3. List projects”ancla projects list --org <org-slug>4. Deploy an application
Section titled “4. Deploy an application”ancla apps deploy --app <app-slug>5. Check deployment status
Section titled “5. Check deployment status”ancla apps status --app <app-slug>Next steps
Section titled “Next steps”- Authentication — browser login, manual keys, CI setup
- Configuration — config files, env vars, precedence
- Shell Completion — tab completion for your shell
- CLI Reference — full command documentation