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

# Migration Guide

> Complete guide to migrating your Helix project to v2

***

After Installing the Helix [CLI v2](/documentation/cli-v2/getting-started), you can migrate your project to v2 format.

<Steps>
  <Step title="Find and enter V1 project">
    ```bash theme={null}
    cd path/to/v1-project
    ```

    <Note>
      The path used above should be the path to the directory containing the old `config.hx.json` file.
    </Note>
  </Step>

  <Step title="Migrate project">
    ```bash theme={null}
    helix migrate
    ```

    This will migrate your project to v2 format.
  </Step>

  <Step title="Done 🎉">
    You can now start building your application on top of it.
  </Step>
</Steps>
