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

# Configuration

The CoreM configuration file allows you to choose which **framework**, **inventory**, **notification**, **text UI**, **radial menu**, and **targeting system** your server uses.

{% hint style="info" %}
*All CoreM scripts will follow these settings automatically.*
{% endhint %}

This file is located at:

```
crm-core/crm-config/crm-config.lua
```

```lua
--==============================================================
-- crm-core Configuration
-- This file allows you to select which resources
-- your server uses. Configure these based on your setup.
--==============================================================
crm_config = {}

-- Enable or disable debug for crm-core
crm_config.crm_debug = false

--==============================================================
-- FRAMEWORK SELECTION - Choose which framework crm-core should integrate with.
--
-- "auto" → Automatically detects your framework. (recommended)
-- "es_extended"
-- "qb-core"
-- "qbx_core"
--==============================================================
crm_config.crm_lib = "auto"


--==============================================================
-- INVENTORY SYSTEM - Select the inventory system your server is using.
--
-- "ox_inventory"
-- "esx_addoninventory"
-- "qb-inventory"
-- "codem-inventory"
-- "qs-inventory"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_inventory = "ox_inventory"


--==============================================================
-- NOTIFICATION SYSTEM - Choose how notifications are displayed to players.
--
-- "built-in" → Uses crm-core’s default notification system (recommended)
-- "ox_lib"
-- "crm-hud"
-- "qb-core"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_notify = "built-in"


--==============================================================
-- TEXT UI SYSTEM - Determines how prompts like “Press E to interact” are shown.
--
-- "built-in" → text UI included with crm-core (recommended)
-- "ox_lib"
-- "qb-core"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_textui = "built-in"


--==============================================================
-- RADIAL MENU SYSTEM - Select which radial menu crm-core should use.
--
-- "crm-radialmenu"
-- "ox_lib"
-- "qb-radialmenu"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_radial = "ox_lib"


--==============================================================
-- TARGETING SYSTEM - Select the target-eye menu system used for interactions.
--
-- "crm-target"
-- "ox_target"
-- "qb-target"
-- You can also support other resources by editing the modules in the "crm-editable" folder
--==============================================================
crm_config.crm_target = "ox_target"
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://corem.gitbook.io/welcome/crm-core/configuration.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.
