What do you use for auth?<p>For context, I'm building a full-stack app using React Native, Django, and PostgresQL.<p>Do you use auth providers? I've looked into Auth0 (which seems to be pricey) and ORY but I'm not sure what best fits my use case.<p>I've seen that building your own auth can be time-consuming and I'd like to spend less time integrating auth and more time working on other app features.<p>I'm considering using Firebase strictly for user authentication because I think it would be the simplest, but I'm not sure if this is a good idea.<p>For people who have experience building their own auth, using providers, or any other approaches, what would you recommend and why?
I just use what is built into Django or an extension for DRF to use jwt<p>I found the 3rd party providers to be just one more hassle. The exception being larger systems that were already running on AWS/Azure and there I used the provider service - Cognito for AWS for example.