This example shows how to integrate passkeys into a Next.js application using Authsignal + NextAuth.
This demo uses NextAuth's built in email magic link provider for account creation and email magic link sign in. Once a user is logged in, they can create a passkey that can be used for signing in.
You will need to use your own email provider service to send magic links to users.
You will need to configure your Authsignal tenant to setup passkeys. Learn more here https://docs.authsignal.com/passkeys/getting-started.
-
Install Dependencies
npm install # or yarn
-
Environment Variables
Copy the
.env.example
file to a new file named.env.local
and fill in your environment variables. -
Setup Prisma
-
Add your database provider to the datasource object in schema.prisma. The default is
postgresql
. -
Generate the Prisma Client:
npx prisma generate
-
Run the Prisma migration to configure your database to use the schema:
npx prisma migrate dev
-
-
Start the application
npm run dev # or yarn dev
-
Open the application
Navigate to http://localhost:3000 in your browser to see the application.