NETCORESAAS
  • Welcome
  • Getting Started
    • Getting started
      • Frontend
      • Backend + Frontend
    • Deploy
      • Initialize git repository
      • Deploy to heroku
    • Environment variables
    • API
      • Controllers
    • Testing
      • Integration Tests
  • Other
    • Installing
      • 1. Install VSCode
      • 2. Install .NET Core SDK
      • 3. Install Node.js
      • 4. Test installation
    • Integrations
      • Stripe
        • Subscription Options
        • Getting the API Keys
        • Creating Stripe Products
        • Creating the Customer Portal
      • Email
        • SMTP
        • Postmark
      • Social Login
        • Google Sign In
      • Conversations
        • Intercom
        • Drift
  • Blog
Powered by GitBook
On this page
  • Environment variables:
  • Marketing side
  • App side

Was this helpful?

  1. Other
  2. Integrations
  3. Conversations

Drift

Chat with your customers with Drift.

PreviousIntercom

Last updated 4 years ago

Was this helpful?

Environment variables:

  • Frontend

    • VUE_APP_INTEGRATIONS_CONVERSATIONS_DRIFT

Marketing side

Uncomment line on file ClientApp/srs/views/marketing/Index.vue

this.$drift.show();

App side

Uncomment these lines on file ClientApp/srs/components/layouts/AppLayout.vue

 this.$drift.identify(this.$store.state.account.user.id, {
        name: this.$store.state.account.user.firstName,
        email: this.$store.state.account.user.email,
      });
this.$drift.show();

Example:

Drift