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

# Configuration

## Framework <a href="#framework" id="framework"></a>

Select the framework you are using on your server.

```lua
Config.Framework = 'auto' -- 'esx'/'qb'/'auto'
```

## Distance <a href="#framework" id="framework"></a>

Edit distance for Me and Do

```lua
Config.Distance = 10.0
```

## CommandMe and CommandDo <a href="#framework" id="framework"></a>

Edit command for Me and Do

```lua
Config.CommandMe = "me"
Config.CommandDo = "do"
```

## Show Update <a href="#framework" id="framework"></a>

Show updates in console?

```lua
Config.Update = true -- show in console the updates ?
```

## Show <a href="#framework" id="framework"></a>

Show information?

```lua
Config.Show = {
    Name = true,    -- show name ic?
    Avatar = true, -- show profile?
    botToken = "...", -- Bot token for discord
    defaultImg = "https://gifdb.com/images/high/profile-pic-hotaro-oreki-blowing-coffee-n2a36sbz31j0to8t.gif"--url of img or gif
}
```

## Style <a href="#framework" id="framework"></a>

Here you can change the style of each one, to match the colors of your server!

```lua
Config.Style = {
    ['Me'] = {
        BgName = "#000000",
        ColorName = "#acafad",
        BgTag = "#000000",
        ColorTag = "#acafad",
        Color = "#37393e",
        BgCard = "linear-gradient(145deg, #acafad 0%, #000000 100%)",
    },
    ['Do'] = {
        BgName = "#000000",
        ColorName = "#acafad",
        BgTag = "#000000",
        ColorTag = "#acafad",
        Color = "#37393e",
        BgCard = "linear-gradient(145deg, #acafad 0%, #000000 100%)",
    }
}
```
