Replies: 1 comment 1 reply
-
Unless you are doing database interactions from your local computer there shouldn't be any need to be logging in and out of each client's instance. Each client should be using migration files so you can work on their project locally and then push to a GitHub repo which would have a workflow setup to automate running the migrations from GitHub actions. Manually doing these from your own machine isn't the best way when dealing with projects. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I develop for multiple clients. they each have own supabase instance.
That requires me to do
supabase login
andsupabase logout
everytime i switch.I tried to invite single account to all of them but there is 2 free account limit
( initial development goes with free account. then later client decides which plan to buy )
supabase login create access token evertime. I end up with a lots of access token.
Is it intentional? or am i missing some workflow?
Beta Was this translation helpful? Give feedback.
All reactions