Home

Sequin

This guide explains how to quickly setup a sync between Sequin and a Supabase Postgres database.

Sequin allows you to sync platforms like Stripe and Salesforce with Supabase in real-time. You'll be able to read and write to your Stripe customers or Salesforce accounts right from the Supabase client using SQL. Here's how to get setup.

Step 1: Connect Sequin to Supabase#

To connect Supabase to Sequin, you'll first need to retrieve the credentials for your Supabase Postgres database:

  1. In the Supabase dashboard, go to the settings page and open up your Database settings. In the Connection info section, you'll find the credentials you need - like host and user:

    TBD

  2. In the Sequin console, go to your sync's configuration and open the Destination section. Select Launch or Connect and then click Connect to configure the connection to your Supabase Postgres:

    TBD

  3. In the connection modal that appears, enter the Host and Port for your Supabase database and click Continue.

    TBD

  4. Now, enter the Database name and set the schema name for your sync. For instance, if your syncing Stripe, you'll likely want to name your synced schema something like stripe. Finally, enter the user and password for your Supabase database and then click Continue. Sequin will verify it can properly connect to your database with the correct permissions.

    TBD

  5. Sequin is now connected to your Supabase Postgres database and will ask you to confirm which database users should be able to access your synced schema. Select all of the users and click Continue:

    TBD

  6. That's it. Sequin will now create a new schema and permissions group in your Supabase database. Name the database connection in Sequin something like Supabase and your done!

In the Supabase dashboard, you can go to the Table Editor and you'll see a new schema full of your synced platform data.

TBD

Step 2: Grant Permissions#

To ensure the right users can access the synced schema Sequin manages, you'll need to run a couple permission grants.

  1. In the Sequin console, click the Connect button next to your sync and copy down your Schema and unique Read Group.

    TBD

  2. Now, in the Supabase dashboard, go to the SQL Editor and run the following permission grants:

    GRANT sequin_read_▒▒▒▒ TO postgres, anon, authenticated, service_role;
    
    GRANT USAGE ON SCHEMA {{your_schema_name}} TO anon, authenticated, service_role;
    
    GRANT ALL ON ALL TABLES IN SCHEMA {{your_schema_name}} TO anon, authenticated, service_role;
    
    ALTER DEFAULT PRIVILEGES FOR ROLE postgres, supabase_admin IN SCHEMA {{your_schema_name}} GRANT ALL ON TABLES TO anon, authenticated, service_role;

    These permission grants ensure that the various Supabase database users can access and read all the tables in your synced schema.

Step 3: Configure the Supabase Client#

Finally, you'll need to define a new Supabase client in your application to access your synced schema. In the file where you initialized your Supabase client, define a new client with a schema parameter:

export const supabase_schema = createClient(
  'https://xyzcompany.supabase.co',
  'public-anon-key',
  {
    schema: {{your_schema_name}},
  }
);

You'll use this client to query for data in your synced schema.

Resources#

Need some help?

Not to worry, our specialist engineers are here to help. Submit a support ticket through the Dashboard.