Sunil Gupta
Sunil Gupta

Reputation: 832

Supabase signup() fails - signup not allowed

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?

Upvotes: 7

Views: 4877

Answers (1)

Andrew Smith
Andrew Smith

Reputation: 1841

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.

Upvotes: 6

Related Questions