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

# qovery context

> Context management commands for Qovery CLI

## Overview

The `context` command manages your current working context (organization, project, environment). This allows you to run commands without specifying these parameters every time.

## Commands

### Set Context

Set your working context interactively:

```bash theme={null}
qovery context set
```

Set specific organization:

```bash theme={null}
qovery context set --organization "My Organization"
```

Set specific project:

```bash theme={null}
qovery context set --project "My Project"
```

Set specific environment:

```bash theme={null}
qovery context set --environment "production"
```

### List Contexts

List all available contexts:

```bash theme={null}
qovery context list
```

### Current Context

Display current context:

```bash theme={null}
qovery context current
```

## Examples

### Set Complete Context

```bash theme={null}
# Interactive selection
qovery context set

# Select organization -> project -> environment
# Context saved for subsequent commands
```

### Set Organization Only

```bash theme={null}
qovery context set --organization "Acme Corp"

# Now you can run commands within this org
qovery project list
```

### Check Current Context

```bash theme={null}
qovery context current
# Output:
# Organization: Acme Corp
# Project: Backend Services
# Environment: production
```

### Reset Context

```bash theme={null}
qovery context set
# Select different org/project/environment
```

## Options

| Flag             | Description                   |
| ---------------- | ----------------------------- |
| `--organization` | Set organization context      |
| `--project`      | Set project context           |
| `--environment`  | Set environment context       |
| `--help`         | Show help for context command |

## Related Commands

* [`qovery auth`](/cli/commands/auth) - Authenticate with Qovery
