Hello guys, I am launching my side project tomorro...
# off-topic
a
Hello guys, I am launching my side project tomorrow, build entirely on top of supabase(auth, database, storage). Anything that should be done before going full production. Would love to know.
s
A few things I can think of off the top of my head: - Are all your RLS policies in place and working? Try each table as a non-authenticated user, as a logged in user that's allowed to access specific rows, and as a different user but trying to access rows they're not allowed to access. - Make sure any triggers you're using work properly. - Make sure your email server settings are correct, and that your templates include enough information about what the user is signing up for (to avoid the emails being marked as spam and to let the user identify what exactly they've signed up for) - Do you use any Postgres functions, and if so, do they all work, and are they all performing as quickly as you'd expect? Optimisation can be done post-release, but making sure they work should be a priority. There's likely other things worth investigating - maybe other people have some ideas
a
Thanks a lot @User Checked RLS and email settings, working properly. Not using Postgres functions as of now.