Recipe app: everyone can see everyone elses recipes
Stuck point
right now every user sees every recipe in the whole app. I need each person to only see their own, but Supabase RLS just blocks all my inserts when I turn it on.
progress status — how done is it, really?
that 31-pt gap is probably exactly where the last step is hiding.
What I need help with
someone to sanity-check my RLS policies so inserts work AND users are isolated.
Your first move
In Supabase, add an RLS policy on the recipes table (auth.uid() = user_id) for select AND insert — that isolates each person's recipes and unblocks your own inserts.
the road everyone walks
every shipped app walked this exact road. being stuck partway isn't failing, it's the middle of the climb — and the AI read (54%) puts this project roughly here.
next stop: the core feature works · the thing it's actually for — where most stall.
want YOUR whole road plotted. every step, tool & why? plan your buildknow the missing piece? drop it in the room below.
help outProject story›
What's already working
auth works, adding + listing recipes works, images upload.
The goal
a private recipe box where each person keeps their own collection.