\- lookout for RLS in your tables \- do not use service keys (do not expose) Best of all, do not call supabase directly from your Frontend, add an extra layer of API and add JWT verification on that layer.- lookout for RLS in your tables \- do not use service keys (do not expose) Best of all, do not call supabase directly from your Frontend, add an extra layer of API and add JWT verification on that layer.
Okay thanks
Thanks, will definitely use it. Are there any hidden costs?
I'm building something where I need to send mails after a db run, will nuvix help in that? Also can you share docs if you have any?
What do you need help with, I can help. I can write a separate backend too that can interact with supabase and frontend
The reason I love reddit, I am here after a year this was posted and I was able to fix the issue. As they say, "if you have faced an issue search for the solution on reddit, someone else also might have faced it"
just use supabase for auth and db, write all the other functionalities in fastify/express.
Ig this is the best and on point comment on this post. Thanks!
It's usually recommended to use a separate frontend and backend. More importantly you are using rls but you can also use jwt for security. You can maybe use server action sof nextjs to call the api layer and let the APIs perform all the operations.
thanks for the suggestions!