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

# Private

> Learn how to share your addons privately.

<Snippet file="enterprise-feature.mdx" />

This guide assumes you have already created a addon and created a private fork of our repository, and you would like to package it as a file and upload it.

<Tip>
  Friendly Tip: There is a CLI to easily upload it to your platform. Please check out [Publish Custom Addons](../misc/publish-addon).
</Tip>

<Steps>
  <Step title="Build Addon">
    Build the addon using the following command. Make sure to replace `${name}` with your addon name.

    ```bash theme={null}
    npm run addons -- build --name=${name}
    ```

    <Info>
      More information about building addons can be found [here](../misc/build-addon).
    </Info>
  </Step>

  <Step title="Upload Tarball">
    Upload the generated tarball inside `dist/packages/addons/${name}`from NRAI Platform Admin -> Addons

    <img src="https://mintlify.s3.us-west-1.amazonaws.com/newratantechnologiespvtltd/resources/screenshots/install-addon.png" alt="Manage Addons" />
  </Step>
</Steps>
