> ## 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.

# Running in dev mode

> Run the Lerian Console locally in development mode to iterate on changes before promoting them.

If you're actively developing Lerian Console, we recommend running it outside Docker to avoid conflicts and improve speed.

### Steps

<Steps>
  <Step title="Stop the Console container">
    <CodeGroup>
      ```bash Bash theme={null}
      docker stop console
      ```
    </CodeGroup>
  </Step>

  <Step title="Go to the Console project folder">
    <CodeGroup>
      ```bash Bash theme={null}
      cd product-console
      ```
    </CodeGroup>
  </Step>

  <Step title="Install dependencies">
    <CodeGroup>
      ```bash Bash theme={null}
      npm install
      ```
    </CodeGroup>
  </Step>

  <Step title="Review the environment">
    The project ships a `.env.development` file that the development server loads automatically. Adjust its variables if your local services (Midaz APIs, Access Manager) run on non-default hosts or ports.
  </Step>

  <Step title="Start dev mode">
    <CodeGroup>
      ```bash Bash theme={null}
      npm run dev
      ```
    </CodeGroup>
  </Step>
</Steps>

<Note>
  The development server runs at [http://localhost:8081](http://localhost:8081). The first build might take a minute as pages are compiled.
</Note>
