2,196 questions
0
votes
0
answers
23
views
Stuck with "exec format error" on Supabase Local Dev (Apple M2) [closed]
I’ve been wrestling with Supabase local development on my Apple M2 for the last few hours, and I’ve officially hit a wall. For some reason, the vector container refuses to start, and it ends up ...
0
votes
0
answers
46
views
How to sync Fundraise Up webhook data to external authentication provider?
I'm integrating Fundraise Up donations with a membership system that needs authentication. When a user donates, Fundraise Up sends a webhook with donor information, and I need to automatically create/...
-3
votes
0
answers
46
views
Supabase, Unexpected end of JSON input Error While uploading img file to storage [closed]
Trying to upload a image file(png) to Supabase Storage Using the code below.
import fs from 'fs'
import { createClient } from '@supabase/supabase-js'
import 'dotenv/config'
const supabase = ...
-6
votes
1
answer
66
views
I want to insert in [closed]
I am trying to insert data in supbase were there are two tables one is city table and second is position table by using supabase REST API.
My data structure is
{"cityName":"Alfajarin&...
0
votes
1
answer
78
views
Getting "failed to inspect docker image" when running supabase db pull
I'm setting up my supabase project through the CLI and have successfully run:
npx supabase init
npx supabase login
npx supabase link
But when I run npx supabase db pull, I get the following error:
...
Best practices
0
votes
3
replies
61
views
How can I make the server the single source of truth for pricing in a React + Vite app with an Express backend?
I’m building a React + Vite frontend with a Node/Express backend, Supabase auth, and Stripe subscriptions. Pricing logic currently exists in the React app for responsiveness, but quotes are stored ...
-1
votes
1
answer
69
views
How do you do partial text search in Supabase Db?
I'm trying to implement partial text search for my Supabase DB. For example, I would like:
He
to match with the value
Hello
There's a section in the Supabase docs regarding this, however it's lacking ...
Advice
1
vote
2
replies
57
views
Server-side autocomplete for ~1200 schools in Supabase/Postgres — need typo/acronym-tolerant, low resource usage
Problem:
I have a React + TypeScript site with ~1200 schools stored in Supabase (PostgreSQL). The page only loads the first ~20 schools to reduce API usage, so full client-side matching isn’t possible ...
0
votes
0
answers
45
views
How can I diff schemas between two separate Supabase projects (remote → remote) using the Supabase CLI?
I'm trying to compare the schema of two different Supabase projects (each in a separate Supabase account). My goal is to generate a migration or diff showing the differences between:
Project A (dev)
...
1
vote
0
answers
47
views
Database error when updating user row in Supabase with RLS, denied despite correct user_id?
(btw im not anywhere near a professional with this stuff) I'm encountering a database error when trying to UPDATE a user row in my Supabase/Postgres app that uses Row-Level Security (RLS). When I ...
0
votes
0
answers
69
views
Authentication persistence issues when upgrading Supabase Flutter from v1 to v2
I want to ensure that users only need to log in the first time after downloading my mobile app, and save their user sessions so they don't need to re-authenticate every single time they open the app.
...
0
votes
0
answers
36
views
supabase upload file without using supabase auth
I’m using Node.js to store files on Supabase. I’m only using Supabase for the database and file storage—not for authentication.
Here’s what I’m currently doing:
const filename = `av/${uniqueId}${ext}`;...
Best practices
0
votes
0
replies
47
views
How do I manage Supabase migrations across main and develop branches using GitHub Actions?
I’m using Supabase, Next.js, and GitHub with the following setup:
A main branch for production
A develop branch for development
Two separate Supabase projects:
Project A → Production
Project B → ...
0
votes
0
answers
111
views
Supabase Edge Function returns "No user found for JWT" when deleting user from Flutter
I am trying to implement a "Delete Account" feature in my Flutter application using Supabase Edge Functions. I am calling the function from the Flutter client SDK, but the Edge Function ...
0
votes
0
answers
83
views
Can't get correct polyline routes from pickup to dropoff location
when you accept a trip, the flow works alright; you get a route from rider to passenger pickup location, you actually see the confirmation sheet. Which means status has moved from accepted -> ...