# Configuration

* <mark style="color:yellow;">**General Settings**</mark><br>

  ```lua
  PH.Framework = "auto"  -- "auto" detects ESX or QB-Core automatically
  PH.Webhook = "https://discord.com/api/webhooks/YOUR_WEBHOOK_HERE"
  ```
* <mark style="color:yellow;">**Permission announce (police - ems)**</mark>

```lua
PH.AllowedJobs = {
    ['police'] = { minGrade = 3, maxGrade = 10, title = "LSPD ALERT", color = 38690 },
    ['ambulance'] = { minGrade = 2, maxGrade = 8, title = "EMS MEDICAL ALERT", color = 15158332 }
}
```

* <mark style="color:yellow;">Pre-configured Types:</mark>

```lua
Config.TypeMap = {
    ['success'] = 'success',  -- ✅ Green check, success sound
    ['error'] = 'error',      -- ❌ Red X, error sound  
    ['warning'] = 'warning',  -- ⚠️ Yellow triangle, warning sound
    ['info'] = 'info'         -- ℹ️ Blue info, info sound
}
```
