Syncing data from clerk sign up to database
Is there a way of syncing new user sign ups on a "User" table on a database without using webhooks?
5 Replies
I asked this in the Clerk channel and they're adamant on using webhooks for this. I found that process to be very draining and incondite and wish this was simpler.
(Going to follow this thread to see other answers though)
Yeah it took me much longer to get the we hooks all setup. I'm syncing three tables myself
I've created a function in my utils folder that I call in my /onboarding page (server component)
i thought about something like that initially, but i figured maybe there was some other way
but I think this is what ill end up doing, thanks!
I call their getUser on the API and then load my database each time they come into my application.