Hi everyone... I'm trying supabase local developme...
# help
m
Hi everyone... I'm trying supabase local development and cannot "register" nor "invite" new users (myself mainly) ... The confirmation email never goes through ... Anyone can give me a clue ?
s
If set to false, users don't have to confirm their registration (e.g. no link is emailed to them). If set to true, users will have to confirm their email by clicking the link sent to their email. Make sure
GOTRUE_DISABLE_SIGNUP
is set to false if you want to allow
signUp()
. Without knowing what error you're getting back when trying to sign up, it's difficult to advise of a solution to the problem.
m
Thanks for the answer... It seems the new supabase cli build a "docker environment" where GoTrue is set up as "AUTOCONFIRM=true" so it seems that's the reason I didn't get any email... BTW ... Would you suggest where I could look to any error logs ?
s
When you call any request from the JS library, the library will provide
{ data, error }
properties which you can
console.log()
to see details. Service-specific logs for auth, realtime, REST and storage are available via docker (e.g. using a tool like Portainer or Docker Desktop, or with
docker logs
)
m
thanks... I didn't know much about docker ... I think docker logs will help me understand better... BTW Thank you very much!
3 Views