Getting Started
Installation
Section titled “Installation”Requires Go 1.24+.
go install ancla.dev/cli@latestuv tool install anclaOr with pip:
pip install anclabrew install SideQuest-Group/ancla-client/anclaRun without installing:
npx ancla# orbunx anclaOr install globally:
npm install -g ancla# orbun install -g anclaRequires cargo-binstall.
cargo binstall anclaDownload from GitHub Releases:
curl -Lo ancla.tar.gz https://github.com/SideQuest-Group/ancla-client/releases/latest/download/ancla_darwin_arm64.tar.gztar xzf ancla.tar.gzchmod +x anclasudo mv ancla /usr/local/bin/curl -Lo ancla.tar.gz https://github.com/SideQuest-Group/ancla-client/releases/latest/download/ancla_darwin_amd64.tar.gztar xzf ancla.tar.gzchmod +x anclasudo mv ancla /usr/local/bin/curl -Lo ancla.tar.gz https://github.com/SideQuest-Group/ancla-client/releases/latest/download/ancla_linux_amd64.tar.gztar xzf ancla.tar.gzchmod +x anclasudo mv ancla /usr/local/bin/Verify the install:
ancla versionQuick 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 workspaces
Section titled “2. List your workspaces”ancla workspaces list3. List projects
Section titled “3. List projects”ancla projects list --workspace my-ws4. Deploy a service
Section titled “4. Deploy a service”ancla services deploy my-ws/my-project/production/my-service5. Check deploy status
Section titled “5. Check deploy status”ancla services status my-ws/my-project/production/my-service6. Link your project directory
Section titled “6. Link your project directory”ancla link my-ws/my-project/production/my-serviceNow commands like status, logs, run, and down know what service you’re working on without extra arguments. See Project Linking for details.
Next steps
Section titled “Next steps”- Platform Overview — how Ancla organizes workspaces, projects, environments, and services
- Deploy Pipeline — what happens between
ancla deployand your app being live - Secrets & Config — encrypted variables, scopes, inheritance
- Project Linking — link your directory to skip typing workspace/project/env/service on every command
- Development Workflow — deploy, monitor, run locally, scale, and tear down
- Remote Access — SSH, database shell, cache management
- Scripting & Automation — JSON output, quiet mode, CI/CD patterns
- 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