Password Login
How to set up a password login for your IndieKit application
To enable password-based authentication in your IndieKit application, you need to update your configuration file.
Open src/lib/config.ts
and set enablePasswordAuth
to true
:
auth: {
enablePasswordAuth: true, // Set to true to enable password-based authentication
},
Once enabled, users will be able to sign up and log in using their email and password. 🔐