> For the complete documentation index, see [llms.txt](https://docs.rocketblend.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rocketblend.io/reference/cli/configuration.md).

# Configuration

### Default Config

{% code title="config.json" fullWidth="false" %}

```json
{
  "platform": "<windows/macos/linux>",
  "defaultbuild": "github.com/rocketblend/official-library/packages/v0/builds/blender/4.2.2",
  "installationspath": "./installations",
  "packagespath": "./packages",
  "loglevel": "info",
  "aliases": {
    "github.com/rocketblend/official-library/packages/v0/addons": "addons",
    "github.com/rocketblend/official-library/packages/v0/builds": "builds",
    "github.com/rocketblend/official-library/packages/v0/builds/blender": "blender"
  },
  "trusteddomains": [
    "download.blender.org"
  ],
  "untrusteddomainpolicy": "warn"
}
```

{% endcode %}

### Download Security

RocketBlend includes download security to help protect against downloading files from untrusted domains.

**Trusted Domains** (`trusteddomains`): List of domains from which files can be safely downloaded. Default: `download.blender.org`

**Untrusted Domain Policy** (`untrusteddomainpolicy`): How to handle downloads from domains not in the trusted list:

* `block` - Prevents downloads (most secure)
* `warn` - Logs warning but allows download (default)
* `allow` - Permits downloads without warnings

#### Examples

```bash
# Set trusted domains (replaces entire list)
rocketblend config trusteddomains --set '["download.blender.org", "github.com"]'

# Block downloads from untrusted domains
rocketblend config untrusteddomainpolicy --set "block"

# Allow all downloads
rocketblend config untrusteddomainpolicy --set "allow"
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rocketblend.io/reference/cli/configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
