> For the complete documentation index, see [llms.txt](https://wiki.owain.codes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.owain.codes/coding/umbraco/models-builder-settings.md).

# Models Builder Settings

### Setting up Models Builder within web.config to save the models to a custom folder.

If using this, you need to leave out the `value` for line #4 and #5

```
  <add key="Umbraco.ModelsBuilder.Enable" value="true" />
  <add key="Umbraco.ModelsBuilder.ModelsMode" value="AppData" />

  <add key="Umbraco.ModelsBuilder.AcceptUnsafeModelsDirectory" value="true" />
  <add key="Umbraco.ModelsBuilder.ModelsDirectory" value="~/Models/Generated" />
```
