> ## Documentation Index
> Fetch the complete documentation index at: https://lationscripts.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Shops Creator - Previews

> Preview the config file(s) available in his resource

<CodeGroup>
  ```lua config/setup.lua expandable theme={null}
  return {

      -- Use only if needed, directed by support or know what you're doing
      -- Notice: enabling debug features will significantly increase resmon
      -- And should always be disabled in production
      debug = false,

      -- Set your interaction system below
      -- Available options are: 'auto', 'ox_target', 'qb-target', 'interact' & 'custom'
      -- 'auto' will automatically detect and use the available interaction system
      -- 'custom' needs to be added to client/utils/interact.lua
      interact = 'auto',

      -- Set your notification system below
      -- Available options are: 'lation_ui', 'ox_lib', 'esx', 'qb', 'okok', 'sd-notify', 'wasabi_notify' & 'custom'
      -- 'custom' needs to be added to client/utils/notify.lua
      notify = 'ox_lib',

      -- Do you want to be notified via server console if an update is available?
      -- True if yes, false if no
      version = true,

      -- Set your society banking system below
      -- Available options are: 'auto', 'qb-banking', 'qb-management', 'esx_addonaccount', 'Renewed-Banking',
      -- 'okokBanking', 'fd_banking', 'tgg-banking' or 'custom'
      -- 'auto' will automatically detect based on your framework and available banking resources
      -- 'custom' needs to be added to server/utils/banking.lua
      banking = 'auto',
  }
  ```

  ```lua config/logs.lua expandable theme={null}
  return {

      -- What logging service do you want to use?
      -- Available options: 'fivemanage', 'fivemerr', 'discord' & 'none'
      -- It is highly recommended to use a proper logging service such as Fivemanage or Fivemerr
      service = 'none',

      -- Do you want to include screenshots with your logs?
      -- This is only applicable to Fivemanage and Fivemerr
      screenshots = false,

      -- You can enable (true) or disable (false) specific events to log here
      events = {
          -- Log player purchases
          purchase = false,
          -- Log admin shop creation
          shopCreated = false,
          -- Log admin shop edits
          shopEdited = false,
          -- Log admin shop deletions
          shopDeleted = false,
      },

      -- If service = 'discord', you can customize the webhook data here
      -- If not using Discord, this section can be ignored
      discord = {
          -- The name of the webhook
          name = 'Shops',
          -- The webhook link
          link = '',
          -- The webhook profile image
          image = 'https://i.imgur.com/ILTkWBh.png',
          -- The webhook footer image
          footer = 'https://i.imgur.com/ILTkWBh.png'
      }

  }
  ```
</CodeGroup>
