Supabase

S

Supabase

Join the community to ask questions about Supabase and get answers from other members.

Join

HIPAA compliance

Hey, I have a Flutter app which is live on the app store, and one of the new features is to sync it with the Apple HealthKi and TryTerra API to pull data from users glucose monitors. One of the clients prerequisites is to be HIPAA compliant. What does that mean in terms of Supabase. We are using a cloud hosted Supabase instance. Do we need to be working with client side encryption now, what even is HIPAA compliance in terms of Supabase? Thanks!...

Status Down?

Is supabase having issues for anyone else?
No description

Supabase & Cursor with vibe coding no code background. How to build easier?

Hi, I am a 46 year old Real Estate tech guy, but I could not code until AI. Started with Bubble.io in October 2024, Replit in November, Cursor December. I have been coding with AI daily since December (founders life 😬 ). One of my main hurdles still is Cursor and Supabase. It must be a understanding, communication and gaps in knowledge on my side. I am sometimes struggling to keep the right context and make the LLM's create the right migration files. Also, I now have a national DB structure. But we are going global. This means copies, but also exceptions etc. I would love to spar about options there. And humbly I submit my lack of IT knowledge and even fully understanding POSTGRES or SQL for that matter. Yet I am very effective and creative with my team of AI coding assistants in an out of Cursor. I am to be a very big user with our platform aiming to save images for every house on the planet. But since every time there is supabase involved it takes a lot of time, and I am always happy that everything seems to work. That could improve :). Also, perhaps my experience as interested user but with a knowledge gap can give some helpful insights. (I feel like I use Supabase like a caveman)...

emailRedirectTo parameter not working - Supabase ignoring custom redirect urls

Hi! I'm having an issue with Supabase auth where the emailRedirectTo parameter is being ignored. I'm trying to separate domains for early access domain vs development. Problem: I set emailRedirectTo: 'https://mydomain.com/auth/callback' in supabase.auth.signUp()...

Cannot connect supabase to vercel

I'm trying to connect supabase with vercel as administrator of organization and getting this error all the time.
No description

Not getting user exists error when creating user whose email is already there.

hey guys I am getting an strange issue, even when user is registered and am trying to create a new user with the same email, it does give response of user objetc but dont get new user with the new user id in the db. how this is happening, it should give throw user exists error. ```js export async function createUser(userInputs: CreateUserInputs) { // check if the passoword and confirm password match...

Subabase Storage Erorr in AWS S3 connection

I am trying to connect my Supabase storage through an AWS S3 resource in Retool but I am getting an error. If anyone has any idea, please guide me.
No description

Error downloading document

Hello friends, i am having a v0.dev and supabase project and i am having issues viewing or dowloading user documents on admin side/dashboard. When i click on a say on a document to download it returns an error which says Error downloading document. How do i solve that?
No description

Using Load Balancer's is giving me 404 on a query to table.

I am using https://<project_id>-all.supabase.co url which is of a load balancer to initialize the supabase client. But when I try to query the table, its returning me 404 function not found as error. We have RLS enabled in each and every table. ``` const { data: currentUser, error } = await supabaseClient .from("user_profiles") .select("id, email, username, first_name, last_name, profile_picture_url")...

Self-hosting: Kong cannot resolve realtime service

Hi, On my self-hosted Supabase setup, the realtime service is not working. Kong logs show this error: DNS resolution failed: dns server error: 3 name error Tried: ["realtime-dev.supabase-realtime:1 ..."]...

supabase-js v2: PKCE session lost after tab switch (persistSession + autoRefreshToken not working)

Using @supabase/supabase-js@2.52.0 PKCE flow enabled Config: persistSession: true, autoRefreshToken: true On tab switch → auth.getSession() returns null Tried SessionRecoveryManager and manual refresh — still breaks silently...

Why my authentication for users is not working right

Whenever i send an invitation to an email it automatically verfies them even if they didnt click on the email!

I can't log into my GITHUB account.

And I can't access the backend project, what should I do? Can I just log in via email without going through GITHUB?
No description

Account Access Problems

I can't get into my Supabase account because I have a million emails and can't remember which one I used, but when I go to submit a ticket, it forces me to the login page, which is why I was there in the first place. What's the most efficient way to get help on this? Thanks for any help you can provide.

How to stop persisting old realtime messages?

I feel like there's probably a simple solution to this that I'm missing... but I'm currently hitting database size limits because all of my realtime messages are being persisted in tables like these: ``` realtime.messages_2025_07_27, realtime.messages_2025_07_28,...

Can't connect to DB today, was fine yesterday

I'm trying to run a Prisma migration and it's failing today, yet yesterday it worked just fine. Here's the error: `` Error: P1001: Can't reach database server at aws-0-us-east-2.pooler.supabase.com:5432 Please make sure your database server is running at aws-0-us-east-2.pooler.supabase.com:5432`....

What is the recommended way to squash migrations then push the squashed migration file up to prod

What is the recommended way to squash migrations then push the squashed migration file up to prod. We tried and our prod db is stuck in : Something went wrong while restoring your project Your project's data is intact, but your project is inaccessible due to the restoration failure. Please contact support for assistance....

Supabase url broken (path invalid)

Not only is the path valid (provided by supabase) this error also just came out of nowhere I didn’t even work on the site today
No description

Realtime role

When listening to postgres changes what role is used? So for example if i revoke reads on a table for authenticated but allow in RLS and alter for realtime. Wil the user recieve updates if they listen because a different role is used to monitor (or no role at all since its a different system) or will they not recieve anything since authenticated role is used?