You can find this under Settings > Database > Connection Parameters.
Be sure to uncheck connection pooler!
We will need the following:
Database Host
Database Port (Should be 5432)
Username
Password
Database
To create a service account, run this in Supabase:
Copy
Ask AI
CREATE USER artie_transfer WITH PASSWORD 'password';-- Grant replication permissionsALTER USER artie_transfer REPLICATION;-- Grant access to existing tablesGRANT SELECT ON ALL TABLES IN SCHEMA public TO artie_transfer;-- Grant read-only access to future tablesALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO artie_transfer;CREATE PUBLICATION dbz_publication FOR ALL TABLES;