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

# Lerian Console via Helm

> Helm chart installation and version reference for the Lerian Console.

Lerian Console is the unified web interface for managing Lerian products. It provides dashboards for ledger operations, account management, transaction monitoring, and plugin configuration through a single UI.

## Prerequisites

***

* A running Midaz deployment. Lerian Console connects to Midaz APIs for data.
* Access Manager deployed (for authentication).
* Kubernetes 1.30+ and Helm 3+.

## Key configuration

***

```yaml theme={null}
console:
  image:
    tag: "1.5.0"
  env:
    MIDAZ_API_URL: "http://midaz-ledger:3002"
```

## Runtime environment variables

***

The Console reads a set of `NEXT_PUBLIC_*` variables at runtime (injected into the container by its entrypoint), so they can be changed per environment by updating the variable and restarting the Console container — no image rebuild is required.

| Variable                            | Default                                  | Purpose                                                                                                                                                   |
| :---------------------------------- | :--------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `NEXT_PUBLIC_REPORTER_DOCS_URL`     | `https://docs.lerian.studio/en/reporter` | URL of the Reporter documentation linked from the Reporter Module UI. Override it to point operators at an internal or localized documentation site.      |
| `NEXT_PUBLIC_BANK_TRANSFER_ENABLED` | `false` (disabled)                       | Runtime plugin flag that controls whether the **Bank Transfer** plugin is visible. Set to `true` to enable it for the environment.                        |
| `NEXT_PUBLIC_BC_CORREIOS_ENABLED`   | `false` (disabled)                       | Runtime plugin flag that controls whether the **BC Correios** provider is visible in the Reporter Module. Set to `true` to enable it for the environment. |

<Note>
  The plugin flags are **disabled by default**; a plugin only becomes visible when its flag is set to the string `true`. When a flag is off, the plugin's pages are hidden and show a *feature not available* message.
</Note>

## OCI registry

***

```bash theme={null}
oci://registry-1.docker.io/lerianstudio/product-console
```

## Installation

***

```bash theme={null}
helm install console oci://registry-1.docker.io/lerianstudio/product-console --version <version> -n console --create-namespace
```

Replace `<version>` with the desired chart version from the table below.

## Version compatibility

***

| Chart version | Lerian Console |
| :------------ | :------------- |
| 2.0.1         | 1.5.0          |
| 1.0.0         | 1.0.0          |

For the full cross-product compatibility matrix, see [Version compatibility](/en/platform/helm/helm-version-compatibility).

## Resources

***

* [Lerian Console documentation](/en/platform/console/about-lerian-console)
* [Helm chart repository](https://github.com/LerianStudio/helm)
