> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plerion.com/llms.txt
> Use this file to discover all available pages before exploring further.

# plerion configure

> Configure Plerion CLI credentials and settings.

With **plerion configure**, you can set up credentials, regions, and output preferences for the Plerion CLI through an interactive wizard.

***

## Synopsis

```bash theme={"system"}
plerion configure [subcommand]
```

***

## Interactive wizard (default)

```bash theme={"system"}
plerion configure
```

Prompts for:

* **Profile name** (default: `default`)
* **API key**
* **Region** (`au`, `sg1`, `in1`, `us1`)
* **Default output format** (`table`, `json`, `yaml`, `text`)

Writes to `~/.plerion/credentials` and `~/.plerion/config`.

***

## Subcommands

### list

```bash theme={"system"}
plerion configure list
```

Lists all configured profile names.

***

## Examples

```bash theme={"system"}
# Set up the default profile
plerion configure

# Set up a named profile (enter the profile name when prompted by the wizard)
plerion configure
# > Profile name: prod
# > API key: pk_live_...
# > Region: us1
# > Output format: json

# List all profiles
plerion configure list
```

### Example output

```
default
prod
staging
```
