# Settings

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. How do I set the depot path again?
{% 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": "dds"
  },
  "MeshExportArgs": {
    "UncookExtension": "glb",
    "WithMaterials": false
  }
}

```

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).
