Durante Technologies Logo
DURANTETECHNOLOGIES
2,847+
AI projects analyzed
  • Docs
  • marketing:pricing.title
  • Partners
  • Customer Success Stories
Schedule AuditView Pricing
Sign In
Durante Technologies Logo
DURANTETECHNOLOGIES

Durante Technologies architects the future of autonomous software development through systematic AI agent orchestration. We prevent project failures through our proprietary 12 Leverage Points Framework, ensuring 95% success rates where the industry experiences 70% failure.

info@durante.tech

© Copyright 2025 Durante Technologies. All Rights Reserved.

The Operating System for Autonomous Software Development

Services
  • Failure Prevention Audit
  • Agentic Specification Service
  • Enterprise Partnership
  • View All Services
Resources
  • How It Works
  • Customer Success Stories
  • FAQs
  • 12 Leverage Points Framework
Legal
  • Terms of Service
  • Privacy Policy
  • Cookie Policy
  • Getting started with Makerkit
    • Installing Dependencies
  • Authentication
    • Configuration

Configuration

Learn how authentication works in MakerKit and how to configure it.

The way you want your users to authenticate can be driven via configuration.

If you open the global configuration at src/configuration.ts, you'll find the auth object:

import type { Provider } from '@supabase/gotrue-js/src/lib/types';

auth: {
  requireEmailConfirmation: false,
  providers: {
    emailPassword: true,
    phoneNumber: false,
    emailLink: false,
    oAuth: ['google'] as Provider[],
  },
}

As you can see, the providers object can be configured to only display the auth methods we want to use.

  1. For example, by setting both phoneNumber and emailLink to true, the authentication pages will display the Email Link authentication and the Phone Number authentication forms.
  2. Instead, by setting emailPassword to false, we will remove the email/password form from the authentication and user profile pages.

Requiring Email Verification

This setting needs to match what you have set up in Supabase. If you require email confirmation before your users can sign in, you will have to flip the following flag in your configuration:

auth: {
  requireEmailConfirmation: false,
}

When the flag is set to true, the user will not be redirected to the onboarding flow, but will instead see a successful alert asking them to confirm their email. After confirmation, they will be able to sign in.

When the flag is set to false, the application will redirect them directly to the onboarding flow.

Emails sent by Supabase

Supabase spins up an InBucket instance where all the emails are sent: this is where you can find emails related to password reset, sign-in links, and email verifications.

To access the InBucket instance, you can go to the following URL: http://localhost:54324/. Save this URL, you will use it very often.

  1. Requiring Email Verification
    1. Emails sent by Supabase