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

# Profile management

> Manage CLI profiles for different workspaces

Use profiles to switch between different Botpress workspaces and environments.

## List profiles

List all available profiles:

```bash theme={null}
bp profiles list
```

Alias: `bp profiles ls`

## Active profile

Show current active profile:

```bash theme={null}
bp profiles active
```

Displays:

* Workspace ID
* Workspace handle
* API URL
* Token status

## Use profile

Switch to a different profile:

```bash theme={null}
bp profiles use <profile-name>
```

## Profile configuration

Profiles are stored in:

```
~/.botpress/
├── config.json
└── profiles/
    ├── default.json
    └── production.json
```

## Examples

### Switch to production

```bash theme={null}
bp profiles use production
```

### View active profile

```bash theme={null}
bp profiles active
```

Output:

```
Workspace: acme (abc123)
API URL: https://api.botpress.cloud
Authenticated: Yes
```

## Multiple workspaces

Use profiles to work with multiple workspaces:

```bash theme={null}
# Development workspace
bp profiles use dev
bp deploy

# Production workspace
bp profiles use prod
bp deploy
```
