> For the complete documentation index, see [llms.txt](https://zakariaes-organization.gitbook.io/saascore-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zakariaes-organization.gitbook.io/saascore-docs/configuration/chat-plugin.md).

# Chat plugin

Sure, here’s a step-by-step guide to setup your Crisp Chat plugin:

#### Step 1: Create a Crisp Account

1. Go to the [Crisp website](https://crisp.chat/).
2. Sign up for a new account or log in if you already have one.
3. Create a new website inside the Crisp dashboard and get your `website_id`.

Head to config file (lib/config/main.ts) and replace `'your-website-id'` with the actual Crisp `website_id` you obtained from the Crisp dashboard.

```jsx
 [...
 marketing: {
        salesNotification: {
            enabled: true,
        },

        crispChat: {
            enabled: true,
            websiteId: "your-website-id",
        },
    },
    ...]

```
