> For the complete documentation index, see [llms.txt](https://infinity-labs.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://infinity-labs.gitbook.io/docs/paid-scripts/il-businessmarket/installation.md).

# Installation

### 📋 Installation Checklist

#### 1. Database Setup

```sql
-- Import files within SQL folder or run the queries manually
-- Creates: business_applications and required business tables
```

#### 2. Add Business License Item

```lua
-- Add to qb-core/shared/items.lua
['business_license'] = {
    name = 'business_license',
    label = 'Business License',
    weight = 0,
    type = 'item',
    image = 'business_license.png',
    unique = true,
    useable = false,
    shouldClose = true,
    description = 'Official license to operate a business in the city'
}
```

#### 3. Add Item Image

* Create/download `business_license.png` (250x250px)
* Place in `qb-inventory/html/images/`

#### 4. Adjust Config.lua Files

* Config.lua
* Config\_stockmarket.lua

#### 5. Start Resource

```cfg
# Add to server.cfg
ensure IL-companies
```

#### 6. Restart Server

```
restart qb-core
restart qb-inventory
ensure IL-companies
```
