SaasCore Docs
  • Get Started
  • Configuration
    • Database
    • Stripe
      • Product ID and Price ID
      • API keys
      • Stripe Webhook
    • Emails
      • Cron Jobs
    • Claudinary
    • Chat plugin
    • Upstash Redis
    • OAuth with Google and GitHub
    • Subscription types and plans
    • Affiliate program
    • Google Analytics Api
  • Landing page
    • Header
    • Hero
      • Discount
      • AvatarCircles
    • Other components
  • Authentication Flow
    • For Admins
    • For Clients
      • OAuth
      • Credentials
    • For Affiliates
  • Payments
    • Payment Flow Scenarios
      • Scenario 1: Registered Client
      • Scenario 2: Direct Subscription from Home Page
      • Upgrading/Downgrading/Canceling Subscriptions
    • Pricing Table
  • Component Protection
  • Pending ...
Powered by GitBook
On this page
  1. Configuration

Chat plugin

PreviousClaudinaryNextUpstash Redis

Last updated 9 months ago

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

Step 1: Create a Crisp Account

  1. Go to the .

  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.

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

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