FeaturesNovember 20, 2023
Introducing Supabase to Salt
Supabase is an open-source Firebase alternative. It's a great tool for building a backend for your app. It's now integrated with Salt!
Posted by
Related reading
Salt Reads Your Business. Here's What It Finds.
Salt is proactive AI that doesn't wait for prompts. It reads your connected accounts and surfaces what needs attention before you think to ask.

Introduction
Supabase is an open-source Firebase alternative. It's a great tool for building a backend for your app. It's now integrated with Salt!
1. Create a supabase account
First, go to Supabase and create an account. It's free for up to 10,000 rows per table.
Then create a new project and a new table.
CREATE TABLE public.users (
id bigint NOT NULL DEFAULT nextval('users_id_seq'::regclass),
email text NOT NULL,
password text NOT NULL,
created_at timestamp with time zone NOT NULL DEFAULT now(),
CONSTRAINT users_pkey PRIMARY KEY (id)
);2. Add your credentials to Salt
Copy the API URL and API Key from your Supabase project settings and add them to your Salt project settings.
- .env.local
- .env.production