Skip to content
Getting Started

Use Supabase with Reflex

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

AI Prompt
Help me add Supabase to my Reflex project. Create a Supabase project at database.new and run the instruments table SQL. Then: 1. Run `uv init` and `uv add reflex`, then `uv run reflex init --template blank` to scaffold the app. 2. Run `uv add supabase python-dotenv`. 3. Create `.env` and set `SUPABASE_URL` and `SUPABASE_PUBLISHABLE_KEY`. 4. In `my_app/my_app.py`, create a single async Supabase client with `acreate_client` (one client per process, not recreated per request) and an `rx.State` event handler that queries and renders the instruments table, handling `postgrest.APIError`. 5. Run `uv run reflex run` and open http://localhost:3000. REFERENCE https://supabase.com/docs/guides/getting-started/quickstarts/reflex.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.

-- Create the table
create table instruments (
id bigint primary key generated always as identity,
name text not null
);
-- Insert sample data into the table
insert into instruments (name)
values
('violin'),
('viola'),
('cello');
-- Grant the privileges the role needs, which is read access
grant select on public.instruments to anon;
-- Enable row level security for the table
alter table instruments enable row level security;
-- Create a policy to allow the anon role to read from the instruments table
create policy "public can read instruments"
on public.instruments
for select to anon
using (true);

3. Create a Reflex app#

Create a new directory for your Reflex app, initialize a project with uv, add Reflex as a dependency, and scaffold a blank app with --template blank.

mkdir my_app && cd my_app
uv init
uv add reflex
uv run reflex init --template blank

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:

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. Install the Supabase client library#

The fastest way to get started is to use the supabase-py client library, which provides a convenient interface for working with Supabase from a Reflex app.

Install supabase-py and python-dotenv to load environment variables.

uv add supabase python-dotenv

6. Declare Supabase environment variables#

Create a .env file in your project root and populate it with your Supabase connection variables that you can get from the helper below, or from the project Connect panel:

Open Connect panel
.env
SUPABASE_URL=<SUBSTITUTE_SUPABASE_URL>
SUPABASE_PUBLISHABLE_KEY=<SUBSTITUTE_SUPABASE_PUBLISHABLE_KEY>

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

7. Create the Supabase client#

Open my_app/my_app.py and add the following code to create an async Supabase client from your environment variables. Reflex's event handlers run inside an async event loop, so the client is created once with acreate_client and reused across requests, rather than recreated per page load.

my_app/my_app.py
import os
import reflex as rx
from supabase import acreate_client, AsyncClient
from dotenv import load_dotenv
load_dotenv()
_supabase: AsyncClient | None = None
async def get_supabase() -> AsyncClient:
global _supabase
if _supabase is None:
_supabase = await acreate_client(
os.environ.get("SUPABASE_URL"),
os.environ.get("SUPABASE_PUBLISHABLE_KEY"),
)
return _supabase

8. Query data from the app#

Add a State class that holds the query result, an async event handler that fetches data from your instruments table, and a page that renders the result. on_load triggers the handler when the page is opened.

my_app/my_app.py
from postgrest import APIError
class State(rx.State):
instruments: list[dict] = []
error: str = ""
async def load_instruments(self):
supabase = await get_supabase()
try:
response = await supabase.table("instruments").select("*").execute()
except APIError as error:
self.error = f"Error loading instruments: {error.message}"
return
self.instruments = response.data
def index() -> rx.Component:
return rx.container(
rx.heading("Instruments"),
rx.cond(
State.error,
rx.text(State.error),
rx.foreach(
State.instruments,
lambda instrument: rx.text(instrument["name"]),
),
),
)
app = rx.App()
app.add_page(index, on_load=State.load_instruments)

9. Start the app#

Run the Reflex development server, go to http://localhost:3000 in a browser, and you should see the list of instruments.

uv run reflex run

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#