> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# configu/setup-cli-orb

Sets up Configu CLI in your CircleCI workflow. After you've used the orb's setup command, subsequent steps in the same job can run arbitrary Configu CLI commands. All of Configu commands work exactly like they do on your local command line.


## Commands

### setup

Install and configure Configu CLI.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `version` | string | latest | The version of Configu CLI to install. A value of `latest` will install the latest version of Configu CLI. Defaults to `latest`. |

## Examples

### example

Install the latest version of Configu CLI.


```yaml
version: '2.1'
orbs:
  configu: configu/setup-cli-orb@X.Y.Z
jobs:
  deploy:
    docker:
      - image: cimg/base:stable
    steps:
      - configu/setup
workflows:
  deploy:
    jobs:
      - deploy
```