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.
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.
Want to create a project programmatically?
Use the Management API or ask the MCP server to create a new Supabase project.
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.
Save some steps by clicking here to prefill the SQL in the SQL Editor, and then clicking Run.
Want to setup the database programmatically?
You can use the Management API or ask the MCP server to execute SQL queries.
1-- Create the table2create table instruments (3 id bigint primary key generated always as identity,4 name text not null5);67-- Insert sample data into the table8insert into instruments (name)9values10 ('violin'),11 ('viola'),12 ('cello');1314-- Grant the privileges the role needs, which is read access15grant select on public.instruments to anon;1617-- Enable row level security for the table18alter table instruments enable row level security;1920-- Create a policy to allow the anon role to read from the instruments table21create policy "public can read instruments"22on public.instruments23for select to anon24using (true);If you disabled the Data API during project setup, enable it in the Integrations > Data API section of the Dashboard and expose the specific tables or functions you want to access. To automatically grant access for new tables and functions in public, enable Automatically expose new tables.
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.
1npm create refine-app@latest -- --preset refine-supabase my-appThe CLI may prompt for an email address. The refine-supabase preset also ships with demo Supabase credentials. Replace them in step 5 with your own project.
To skip the email prompt in a non-interactive shell, pipe a blank line:
1printf '\n' | npm create refine-app@latest -- --preset refine-supabase my-app4. 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:
1npx skills add supabase/agent-skillsSupabase 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
1VITE_SUPABASE_URL=<SUBSTITUTE_SUPABASE_URL>2VITE_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:
1export const SUPABASE_URL = import.meta.env.VITE_SUPABASE_URL2export const SUPABASE_KEY = import.meta.env.VITE_SUPABASE_PUBLISHABLE_KEYThe 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.
Read the API keys docs for a full explanation of all key types, their uses, and where to find them.
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:
1npm install @refinedev/react-table @refinedev/react-hook-form react-liveThe <HeadlessInferencer /> is a Refine Inferencer component that automatically generates necessary code for the list, create, show and edit pages.
Read more on how the Inferencer works is in the Refine docs.
1npm run refine create-resource instruments7. Add routes for instruments pages#
Add routes for the list, create, show, and edit pages.
Remove the index route for the Welcome page presented with the <Welcome /> component.
1import { Refine } from '@refinedev/core'2import { RefineKbar, RefineKbarProvider } from '@refinedev/kbar'3import routerProvider, {4 DocumentTitleHandler,5 NavigateToResource,6 UnsavedChangesNotifier,7} from '@refinedev/react-router'8import { liveProvider } from '@refinedev/supabase'9import { BrowserRouter, Route, Routes } from 'react-router'1011import './App.css'1213import authProvider from './providers/auth'14import { dataProvider } from './providers/data'15import { supabaseClient } from './providers/supabase-client'16import {17 InstrumentsCreate,18 InstrumentsEdit,19 InstrumentsList,20 InstrumentsShow,21} from './pages/instruments'2223function App() {24 return (25 <BrowserRouter>26 <RefineKbarProvider>27 <Refine28 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}6364export default App8. 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:
1grant insert, update, delete on public.instruments to anon;23create policy "public can insert instruments"4on public.instruments5for insert to anon6with check (true);78create policy "public can update instruments"9on public.instruments10for update to anon11using (true)12with check (true);1314create policy "public can delete instruments"15on public.instruments16for delete to anon17using (true);These policies let anyone with your publishable key modify the instruments table. They exist so you can try the scaffolded UI against sample data. Scope writes to authenticated users before you put real data in this table.
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.
1npm run devThe 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#
- Set up Auth for your app
- Insert more data into your database
- Upload and serve static files using Storage