Migrating Authenticated Users #36664
Unanswered
lukejessen123
asked this question in
Questions
Replies: 2 comments 1 reply
|
If you migrate the data for auth.users and auth.identities you should have those users available to sign in with the same emails and passwords on a different project. I don't know of a specific guide to do that, but there might be info out there. |
1 reply
|
Hi Luke, first export the users with a script. So just go into the dashboard of your supabase project you want to export users from, then go to sql editor, and use something like: You should end up with a table of all your users and their encrypted passwords. Export that table as either CSV, markdown, or JSON. I'd suggest json. Then try: Your import_users.js file should look something like: |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Rookie vibe coder here... Can I migrate authenticated users from one Supabase project to another without requiring users to reauthenticate or reset their passwords, if I own both supabase projects?
All reactions