> For the complete documentation index, see [llms.txt](https://wiki.redmodding.org/wolvenkit/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.redmodding.org/wolvenkit/wolvenkit-cli/usage/settings.md).

# Settings

How to configure Wolvenkit Console

You edit the settings for Wolvenkit.CLI by editing `appsettings.json` in a text editor.

Runnning `Wolvenkit.CLI settings` will open that for you.

### Property Documentation

As a rule of thumb, the settings correspond to their names in the Wolvenkit UI in CamelCase.&#x20;

{% hint style="danger" %}
TODO: Need *much* better documentation here.
{% endhint %}

### Example settings file

An example file (as of PL) can look like this:

```json
{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Warning"
    }
  },
  "XbmExportArgs": {
    "Flip" : false,
    "UncookExtension": "png"
  },
  "MeshExportArgs": {
    "MaterialRepo": "C:\\depot\\goes\\here",
    "UncookExtension": "glb"
  }
}

```

The supported arguments can be found in the Wolvenkit repository for both [Import](https://github.com/WolvenKit/WolvenKit/blob/main/WolvenKit.Common/Model/Arguments/ImportArgs.cs) and [Export](https://github.com/WolvenKit/WolvenKit/blob/main/WolvenKit.Common/Model/Arguments/ExportArgs.cs).
