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

# Installation

> How to install the NoCloud CFX SDK

<Steps>
  <Step title="Download the SDK">
    Download the latest release from [GitHub Releases](https://github.com/nonefivem/no-cloud-cfx/releases).
  </Step>

  <Step title="Extract to Resources">
    Unzip the downloaded file and place the `nocloud` folder into your server's `resources` directory.

    ```
    resources/
    └── nocloud/
    ```
  </Step>

  <Step title="Configure server.cfg">
    Add the following line to your `server.cfg` to ensure the resource starts:

    ```cfg theme={null}
    ensure nocloud
    ```
  </Step>

  <Step title="Set API Key">
    Add your NoCloud API key to your `server.cfg`:

    ```cfg theme={null}
    set NOCLOUD_API_KEY "your_api_key"
    ```

    <Note>
      You can get your API key from the [NoCloud Dashboard](https://dash.nonefivem.com).
    </Note>
  </Step>
</Steps>
