> For the complete documentation index, see [llms.txt](https://docs.picklemods.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.picklemods.com/free-resources/pickle-taxi-job/installation.md).

# Installation

## What do I need?

Use a supported framework or make it work with yours via the bridge folder.

[Ox Lib](https://github.com/overextended/ox_lib/releases/) (Required, Works with any server).

## Installation

:warning:ensure ox\_lib before pickle\_taxijob in the config.:warning:

Edit the business in config.lua

Navigate to the "\_INSTALL" folder.

{% tabs %}
{% tab title="ESX" %}
Execute the SQL provided inside the \_\_INSTALL folder.
{% endtab %}

{% tab title="QBCore" %}
Add the provided job into your jobs.lua in your qbcore shared files.

```lua
['taxi'] = {
    label = 'Taxi Company',
    defaultDuty = true,
    offDutyPay = false,
    grades = {
        ['0'] = {
            name = 'Recruit',
            payment = 0
        },
        ['1'] = {
            name = 'Driver',
            payment = 0
        },
        ['2'] = {
            name = 'Lead Driver',
            payment = 0
        },
        ['3'] = {
            name = 'Owner',
            isboss = true, 
            bankAuth = true,
            payment = 0
        },
    },
},
```

{% endtab %}
{% endtabs %}
