Re: jwt authentication in ninja without django user

2024-10-12 Thread Abdul Qoyyuum Haji Abdul Kadir
Hi Krishnakant, If you wanna use Django Ninja's Auth, then use it properly: Authentication - Django Ninja (django-ninja.dev) And if you insist on logging in with JWT, please use django-ninja-jwt. django-ninja-jwt ยท PyPI

Re: MicroService related issue

2024-10-12 Thread Abdul Qoyyuum Haji Abdul Kadir
Since you made 2 django projects, you should keep them separate as 2 django projects. Don't merge them into one folder. The right way to do this is to package your authentication app and import that into the other project. See this document on making your authentication app as a reusable app: Adva