Squadbase logo

Supabase

Steps and required credentials to connect Supabase to Squadbase

Required Information

FieldDescription
Supabase Connection URLThe Supabase Postgres connection string (e.g., postgresql://postgres.<project-ref>:<password>@aws-0-<region>.pooler.supabase.com:6543/postgres).

How to Obtain

Supabase Connection URL

The easiest way is to copy the connection string directly from the Supabase Dashboard.

  1. Log in to the Supabase Dashboard and open your project
  2. Click the Connect button at the top of the screen
  3. Select the Direct tab
  4. Under Connection Method, select Transaction pooler

Supabase Connect - Transaction pooler

  1. Copy the connection string shown under Connection string
  2. Replace [YOUR-PASSWORD] with your database password

Example:

postgresql://postgres.abcdefghijklmnopqrst:[YOUR-PASSWORD]@aws-1-ap-northeast-2.pooler.supabase.com:6543/postgres

The Transaction pooler (port 6543) is recommended for Squadbase as it efficiently handles multiple connections. The password in the URL is your database password, not your Supabase account login password.


Connection Types

Supabase provides three connection types. Use the Transaction pooler for connecting with Squadbase.

TypePortDescription
Transaction pooler6543Recommended. Ideal for stateless applications where each interaction with Postgres is brief and isolated. IPv4 compatible.
Direct connection5432For applications with persistent, long-lived connections (e.g., VMs, long-standing containers).
Session pooler5432Alternative to Direct connection when connecting via an IPv4 network.

Database Password

The password in the connection URL is the database user password set when the project was created. This is separate from your Supabase account login password.

The connection string displayed in the Connect modal contains [YOUR-PASSWORD] as a placeholder — replace it with your database password.

If you have forgotten your database password, go to DatabaseSettings in the left sidebar and click Reset password under the Database password section.