Supabase

S

Supabase

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

Join

Edge Function Not Receiving Custom Headers from Clerk Webhook (svix-id, svix-signature, etc.)

I'm encountering a persistent issue where my Edge Function is returning a 401 error (Missing authorization header) when invoked by a Clerk webhook. The webhook includes the svix-id, svix-signature, and svix-timestamp headers, but these headers are not visible in the function when it runs. To fix this, I created the following file: supabase/functions/sync_user_from_clerk/.supabase/functions.toml ...
No description

Can't send messages

Hi there - i can't seem to contribute to the channels e.g. #general I've just joined

How to type any type in subscription on callback

```ts export const systemQueueChannel = supabase .channel('system-queue-changes') .on('postgres_changes', { event: 'INSERT', schema: 'governance', table: 'system_queue' }, (payload) => { handleSystemQueueChange(payload)...
No description

Project Pausing isn't Finishing

Hey, I'm on a Free Plan and I wanted to pause a specific project. It says that it takes a few minutes but there's probably some error because it's loading now for more than 24 hours. Here are some screenshots for better understanding. Any help is appreciated🙏
No description

Someone explain RLS for me

I think a new update has come where all my tables have a "Unrestricted" warning on them. I understand that RLS is for security, I understand that it makes only authenticated people access your data, however, the idea is if you're creating a private system, that's to be accessed by only a few employees in a small business, is it still necessary? what risks am I taking if I don't implement them ? and what are some best practices for them?...

Dahboard is not loading

My dashboards is is not loading, just spinning. Tables as well, only publicly available pages. Is the service down?

Im experiencing extremely slow loading on dashboard

I have very fast internet connection with low ping. It isn't a connection problem on my side. Is something under outage or what?

MCP Broken ? Provide a valid Access token

I tried to implement Supabase MCP with Claude Code but got this error : Error: {"error":{"name":"Error","message":"Unauthorized. Please provide a valid access token to the MCP server via the --access-token flag or SUPABASE_ACCESS_TOKEN."}} I put my PAT but it still says that....

Help erasing a vanity url redirect in the CLI

Hello, I tried making a vanity url redirect and now I can't get my apple login to work. I've tried erasing everything but nothing is working....

Project cannot be transferredProject can't be transferred. Failed to update project. What do I do?

I'm an owner in both organizations. But for some reason this is not working, not sure why, I get a Notification that says: Project cannot be transferred Failed to update project. Both orgs are on the free plan. The org receiving the project only has 1 active project, 2 paused projects. What can I do?...
No description

how to setup MCP in Crush CLI

trying many format not success

Contribution to supabase-py

Im looking for contribute on this github repo and I need some guidance to it. I want to know more about supabase to get feel and make my PR more substancial. If you can, tag me on DM to have a call.

call an edge function via webhook

I'm trying to call the edge through its Endpoint URL, but it loads infinitely until it shuts down.

Edit E-Mail Templates

Hello, How can I change the Email templates? As soon as I access the Email Templates Page I get the error shown in the Screenshot top right. Any idea how to fix that...
No description

Upgrade stuck in "Shutting down API services"

I tried to upgrade from PostgreSQL 15 to 17 today, but the upgrade has been stuck in this state for three hours. Do you have any idea what I can do? It's not self-hosted, and I’m on the free plan. :blobsad: Status: ```json {...
No description

Question related to the Enterprise plan

Hi everyone, By the enterprise plan there is a BYO Cloud possibility. I’ve a question regards this, does it work also with a Kubernetes setup? I mean if the Supabase instance running on a Kubernetes cluster in the company’s cloud subscription....

Unable to generate types with Supabase CLI due to permission denied for private schema

I get the error regardless of whether I have a private schema or not. My original intention was to update the db_pre_request function: Migration: ```sql create or REPLACE FUNCTION private.db_pre_request () returns void language plpgsql stable security definer...

Supabase Go Maintainer

Hi, I've been using the supabase go library and it seems like it is no longer maintained and I was wondering if it would be possible for me to help maintain it. I've found some bugs and make a PR, https://github.com/supabase-community/postgrest-go/pull/62, to fix a pretty big bug already....

getClaims in a serverless enviroment not yielding performance gains

Hello, I am using vercel to host my SSR app that uses Supabase. Switching to the getClaims instead of getUser does not yield any performance gains at all. Everything is the same approximately. Am I doing something wrong, or is it because of the serverless environment? Please note that the authentication happens on my sveltekit server and the session is sent over to the client. I have watched the whole tutorial video and read the blog post and followed them step by step, and all is working correct just that there are no performance gains....