Hello, I have a current supabase setup with auth and a db, I am migrating to a react frontend + a custom go backend with my own postgresDB but I want to keep using supabase just for auth. My schema user has a supabase_id to tie the users to the supabase auth id. Before, I could create a trigger that created a user row on every new user. Now that my DB is not part of the supabase system, what would be the best practice way of doing this? I know there is an auth webhook option but that doesnt work when developing locally with localhost as the endpoint must be public. How would you do it?
The user is migrating to a React frontend with a custom Go backend and their own PostgresDB, but wants to continue using Supabase for authentication. They previously used a trigger to create a user row on new user creation. They are seeking best practices for achieving this with their new setup, considering the limitations of using auth webhooks during local development.