> ## 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 Midaz 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 midaz-console
      ```
    </CodeGroup>
  </Step>

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

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

  <Step title="Set environment">
    <CodeGroup>
      ```bash Bash theme={null}
      npm run set-local-env
      ```
    </CodeGroup>
  </Step>

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

<Note>
  The first build might take a minute as pages are compiled.
</Note>
