S
Supabase
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
JoinS
Supabase
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
JoinConnection Issues
Hello,
I am experiencing issues accessing the Supabase service. The main page (supabase.com) sometimes loads, but when I try to access the Dashboard or API (e.g., app.supabase.com, api.supabase.com), I consistently get an ERR_CONNECTION_TIMED_OUT error.
Here are the tests I performed:...
All seed listings was deleted
I created over 100 seed listings in Lovable, which were stored in Supabase. After making a security fix, all of my seed listings were deleted because the system flagged them as a threat.
I then upgraded to Supabase Pro, thinking I could use point-in-time recovery. But it seems I needed to enable it first, so it can’t be applied retroactively.
Is there any way to recover my listings? The “restore” option in Lovable only restores code, not the database content....
Realtime views follow-up
I think I already know the answer to this. I have checked previous threads, but as they may be outdated, I just wanted to confirm whether it's still not possible to use realtime with views?
TIA...
Database Delays?? 13th Sep 2025
Hi I’m getting scripts that usually take 1-5minutes take 10 times longer today. My average api call is taking 6 seconds to respond. I recently upgraded to 2XL and I’m using less than 50% of my compute. This issue has been today only, I’m based in the U.K, I run normally 50+ scripts 24/7 no issue, all almost instant api calls. Today everything is broken and down for about the last 3 hours. Please help
Help! Why Im facing this issue?
"POST | 500 | 103.189.186.157 | 97e663a94cd8da0d | https://baypdaiwqqpzabvbfzjs.supabase.co/auth/v1/token?grant_type=password | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36"
h...
Does anyone have any RBAC/CBAC best practices?
I really want to keep our model as close to Supabase/Postgres as possible, I'd prefer the user role(s) to be attributed in the auth table (so I can add policies without referencing the JWT or additional tables), but that doesn't seem possible.
I've tried setting up Postgres roles with inheritance but that command "inherit" doesnt actually work and it will limit the user to a single role....
Completely disable querying from webapp frontend
I am currently building a Supabase webapp just don't like how it's so easy to leak data to the frontend. I I have a sensitive field on a table, then there's a likelyhood that it could be leaked. I'm being quite careful in everything I build, but I know subsequent developers working on the system probably wont.
I've decided that I want to disable query access to all public tables for anon and authenticated users. I've refactored my codebase so that all queries are served from Nitro server functions and I'm using KV stores etc for some endpoints which is looking great.
I now have the problem of how I can limit query access on the frontend but not on the backend....
Database hostname not found
Hi, I am very confused on how to solve this error. I have verified the below details.
1. Yes I am connected to WiFi.
2. Yes the project is running on supabase (not paused)
3. The URL and API key is correct in my code
...

Database recovery and best practices
I just had a scary accident where cursor IDE inadvertently deleted my Supabase database .
What is the best way to prevent such incidents.
Can entire projects be backed up or only database and db objects? Any best practices?...
Database is wiped after a Postgrs update
Hi all, I set up the supabase cli (MacOS) for the first time yesterday and realized my postgrs in my projectw as at 15, so I did an upgrade to 17. Today I just realized my database is totally wiped, no tables, no schema.
I submitted a support ticket but I'm a free user so there's no guarenteed response and I only have logs available for 2 days.
My first question is for advice on how to interpret what happened from the logs. I don't know how or why the database wiped and can't see any hints in the logs. ...
[Login blocked] Supabase asks for 2FA I never enabled after GitHub SSO
Hi all — I’m locked out of my Supabase dashboard due to an unexpected 2FA prompt I never set up, and I could use help.
What happens:
1) Click “Sign in with GitHub” on app.supabase.com
2) GitHub auth succeeds (and I am able to use GitHub and can access repos and commit normally)...
Supabase queue
I was using the queue plugin (pgmq) and looking through the supabase API reference i don't see a function
read_with_poll
which is a function pgmq supports. Does Supabase support it and it wasn't included in the reference or is it not implemented?Auth user email changed
Hi new user here working on an app with supabase. I created myself an admin account within my app and somehow the email associated to my auth user is now changed to some random numbers and letters. Now I cant login and do anything with the auth user. It won't let me delete it
Any ideas on how to fix this?...
trouble setting up declarative schema
i'm testing setting up a declarative schema.
i created a brand new supabase project.
created new, empty local repo and linked to the project....
Can signInWithOtp lead to user_recovery_requested?
Hi! I have a general question regarding the signup/in flow of supabase, as I have experienced some things that I cannot fully understand using the docs.
My current situation is:
- I create users programmatically using an edge function
```...
I got 'TypeError: fetch failed'
const supabaseAdmin = createClient(
supabaseUrl,
supabaseServiceKey,
{
auth: {...
Possible to return typescript info for just one schema using mcp server?
Is there a way to get data for just one schema (Public) and also to use pagination, if it is too big to fetch it all at once?
Authenticated Webhook
Hey, I need to set up a webhook for some tables that calls an api in my backend. I need to somehow authenticate the request to prove its coming from us. I noticed for a webhook that calls an edge function, supabase gives the option to add the auth header with our api key, but this option isnt there for http requests. Is there any recommended way to authenticate the request for an http request?