Skip to content
Getting Started

Use Supabase with Refine

Learn how to create a Supabase project, add some sample data to your database, and query the data from a Refine app.

AI Prompt
Help me add Supabase to my Refine project. Create a Supabase project at database.new and run the instruments table SQL. Then: 1. Run `npm create refine-app@latest -- --preset refine-supabase my-app` to scaffold the app with Supabase pre-configured. 2. Update `src/utility/supabaseClient.ts` with your Supabase URL and publishable key. 3. Run `npm run refine create-resource instruments` to generate CRUD pages for the instruments table. 4. Update `src/App.tsx` to add routes for the instruments list, create, edit, and show pages. 5. Run `npm run dev` and open http://localhost:5173/instruments. REFERENCE https://supabase.com/docs/guides/getting-started/quickstarts/refine.md

1. Create a Supabase project#

To start, you need a Supabase project.

Create a new Supabase project from the Dashboard of any organization you belong to.

2. Set up your database#

When your Supabase project is up and running, create an instruments table with some sample data. Then set only the privileges each Postgres role needs, add Row Level Security (RLS) for enhanced security for database data by default, and create an RLS policy to make the data in the table publicly readable.

Do these steps within your project's dashboard by copying and running the snippet in your project's SQL Editor.

1
-- Create the table
2
create table instruments (
3
id bigint primary key generated always as identity,
4
name text not null
5
);
6
7
-- Insert sample data into the table
8
insert into instruments (name)
9
values
10
('violin'),
11
('viola'),
12
('cello');
13
14
-- Grant the privileges the role needs, which is read access
15
grant select on public.instruments to anon;
16
17
-- Enable row level security for the table
18
alter table instruments enable row level security;
19
20
-- Create a policy to allow the anon role to read from the instruments table
21
create policy "public can read instruments"
22
on public.instruments
23
for select to anon
24
using (true);

3. Create a Refine app#

Create a Refine app using the create refine-app.

The refine-supabase preset adds @refinedev/supabase supplementary package that supports Supabase in a Refine app. @refinedev/supabase out-of-the-box includes the Supabase dependency: supabase-js.

1
npm create refine-app@latest -- --preset refine-supabase my-app

4. Set up AI tooling (optional)#

Supabase provides two ways to give AI tools context about your project: Agent Skills, which give your AI coding agent procedural knowledge, and the MCP server, which connects AI assistants to your Supabase project directly.

Agent Skills#

Agent Skills is a curated set of instructions that give your AI agent procedural knowledge about working with Supabase.

Install them so your AI coding agent can produce more accurate, reliable code using current Supabase patterns, such as authentication, server-side rendering, and database migrations, rather than relying solely on training data.

Installing Agent Skills#

To install, run the following command in the root of your project:

1
npx skills add supabase/agent-skills

Supabase MCP server#

The Supabase MCP server connects AI assistants to Supabase, so they can inspect your schema and act on your projects on your behalf. Find out how to add it to your client in the MCP docs.

5. Update supabaseClient with environment variables#

Create a .env file and populate it with your Supabase URL and publishable key, which you can get from the helper below, or from the project Connect panel.

Open Connect panel

.env
1
VITE_SUPABASE_URL=<SUBSTITUTE_SUPABASE_URL>
2
VITE_SUPABASE_PUBLISHABLE_KEY=<SUBSTITUTE_SUPABASE_PUBLISHABLE_KEY>

The refine-supabase preset hardcodes Refine's own demo Supabase project in src/providers/constants.ts, and initializes the client from it in src/providers/supabase-client.ts. Replace the hardcoded values so the client reads your project credentials from the environment variables above instead:

src/providers/constants.ts
1
export const SUPABASE_URL = import.meta.env.VITE_SUPABASE_URL
2
export const SUPABASE_KEY = import.meta.env.VITE_SUPABASE_PUBLISHABLE_KEY

The supabaseClient is used by the auth and data providers to connect your Refine app to Supabase.

Get API details#

To interact with data in database tables, you use the client libraries that wrap the auto-generated Data API endpoints, authenticating using the Project URL and key from the project Connect dialog.

Project URL
Publishable key

6. Add instruments resource and pages#

Use the following code to automatically add resources and generate code for the pages to show the instruments data using Refine Inferencer.

This defines pages for list, create, show and edit actions inside the src/pages/instruments/ directory with a <HeadlessInferencer /> component.

The <HeadlessInferencer /> component depends on @refinedev/react-table, @refinedev/react-hook-form, and react-live packages. To avoid errors, install them as dependencies:

1
npm install @refinedev/react-table @refinedev/react-hook-form react-live
1
npm run refine create-resource instruments

7. Add routes for instruments pages#

Add routes for the list, create, show, and edit pages.

src/App.tsx
1
import { Refine } from '@refinedev/core'
2
import { RefineKbar, RefineKbarProvider } from '@refinedev/kbar'
3
import routerProvider, {
4
DocumentTitleHandler,
5
NavigateToResource,
6
UnsavedChangesNotifier,
7
} from '@refinedev/react-router'
8
import { liveProvider } from '@refinedev/supabase'
9
import { BrowserRouter, Route, Routes } from 'react-router'
10
11
import './App.css'
12
13
import authProvider from './providers/auth'
14
import { dataProvider } from './providers/data'
15
import { supabaseClient } from './providers/supabase-client'
16
import {
17
InstrumentsCreate,
18
InstrumentsEdit,
19
InstrumentsList,
20
InstrumentsShow,
21
} from './pages/instruments'
22
23
function App() {
24
return (
25
<BrowserRouter>
26
<RefineKbarProvider>
27
<Refine
28
dataProvider={dataProvider}
29
liveProvider={liveProvider(supabaseClient)}
30
authProvider={authProvider}
31
routerProvider={routerProvider}
32
options={{
33
syncWithLocation: true,
34
warnWhenUnsavedChanges: true,
35
}}
36
resources={[
37
{
38
name: 'instruments',
39
list: '/instruments',
40
create: '/instruments/create',
41
edit: '/instruments/edit/:id',
42
show: '/instruments/show/:id',
43
},
44
]}
45
>
46
<Routes>
47
<Route index element={<NavigateToResource resource="instruments" />} />
48
<Route path="/instruments">
49
<Route index element={<InstrumentsList />} />
50
<Route path="create" element={<InstrumentsCreate />} />
51
<Route path="edit/:id" element={<InstrumentsEdit />} />
52
<Route path="show/:id" element={<InstrumentsShow />} />
53
</Route>
54
</Routes>
55
<RefineKbar />
56
<UnsavedChangesNotifier />
57
<DocumentTitleHandler />
58
</Refine>
59
</RefineKbarProvider>
60
</BrowserRouter>
61
)
62
}
63
64
export default App

8. Allow writes to the instruments table#

The scaffolded pages create and edit instruments, but the database setup in step 2 grants read access only. Without write privileges and matching policies, the create and edit pages fail with permission denied for table instruments.

Run the following in the SQL Editor to grant the privileges and add the policies:

1
grant insert, update, delete on public.instruments to anon;
2
3
create policy "public can insert instruments"
4
on public.instruments
5
for insert to anon
6
with check (true);
7
8
create policy "public can update instruments"
9
on public.instruments
10
for update to anon
11
using (true)
12
with check (true);
13
14
create policy "public can delete instruments"
15
on public.instruments
16
for delete to anon
17
using (true);

9. Start the app#

Run the development server, then open /instruments in your browser (Vite defaults to http://localhost:5173). You should see the instruments pages along the /instruments routes. You can edit and add new instruments using the Inferencer-generated UI.

1
npm run dev

The Inferencer auto-generated code gives you a good starting point on which to keep building your list, create, show and edit pages. You can get these by clicking the Show the auto-generated code buttons in their respective pages.

Production requirements#

The quickstart procedure in this guide optimizes for getting you to a working app, not for production.

Before you deploy:

  • If your app reads or writes through the Data API, review your Row Level Security policies. Any policy you added here is scoped to this quickstart's sample data, not to real user data.
  • Set your Supabase credentials as environment variables on whatever platform you deploy to, rather than committing them to source control.
  • Configure a custom domain for your Supabase project once you're ready to go live.

Next steps#