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


---

# Agent Instructions: 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://wiki.redmodding.org/wolvenkit/wolvenkit-cli/usage/settings.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.
