6

I am trying to signup a new user with email/password. I am on a free tier, and believe I have made the necessary settings.

The Flutter code is:

Supabase.instance.client.auth.signUp(
    email: '[email protected]',
    password: 'password',
);

I get this error

Signups not allowed for this instance

what should I be checking/setting?

1 Answer 1

5

This is likely due to you not having signups enabled inside the Dashboard. You can visit https://app.supabase.com/project/_/settings/auth in order to enable signups.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.