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?