Re: MicroService related issue

2024-10-23 Thread Abdul Qoyyuum Haji Abdul Kadir
Hi Shiva, You can find plenty of examples online like this one diyframework/django-microservice: Designing microservice with Django REST Framework + MongoDB + Docker The simpler version is to have one core Django project that doesn't have anyt

Re: MicroService related issue

2024-10-22 Thread shiva singh
*Hello Sreedhar,* Thank you for your reply and feedback regarding the naming conventions in my Django project. To clarify, *authentication* is the name of my Django project, and *authenticate* is the name of the app within that project. I chose these names to reflect their respective purposes. Ar

Re: MicroService related issue

2024-10-22 Thread shiva singh
hello thank you for your reply. i am new to use microservice with django can you give any project demo link or project demo for reference witch is atleast use 3 small project in with microservice thank you again for your reply On Mon, Oct 21, 2024 at 12:44 AM Francis wrote: > you cannot import m

Re: MicroService related issue

2024-10-22 Thread shiva singh
Hello thank you for reply when we connect on vc can you give any time thanks again for your reply On Mon, Oct 14, 2024 at 12:05 PM Sunday Ajayi wrote: > Hi > > You can email me so we can schedule a call to review it. > > Regards > > *AJAYI Sunday * > (+234) 806 771 5394 > *sunnexaj...@gmail.com

Re: MicroService related issue

2024-10-20 Thread Francis
you cannot import models from another django project. On Mon, Oct 14, 2024, 2:34 PM Sunday Ajayi wrote: > Hi > > You can email me so we can schedule a call to review it. > > Regards > > *AJAYI Sunday * > (+234) 806 771 5394 > *sunnexaj...@gmail.com * > > > > On Mon, Oct 14, 2024 at 1:18 AM Konst

Re: MicroService related issue

2024-10-13 Thread Sunday Ajayi
Hi You can email me so we can schedule a call to review it. Regards *AJAYI Sunday * (+234) 806 771 5394 *sunnexaj...@gmail.com * On Mon, Oct 14, 2024 at 1:18 AM Konstantinos Dimitropoulos < cdemetropou...@gmail.com> wrote: > Hello, why don't you create a project with two apps? Authenticate a

Re: MicroService related issue

2024-10-13 Thread Konstantinos Dimitropoulos
Hello, why don't you create a project with two apps? Authenticate and repaire Le ven. 11 oct. 2024, 11:01, shiva singh a écrit : > Hello > I am currently working on a microservices project using Django and have > encountered an issue. > i am facing issue when create microservice project using

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

Re: MicroService related issue

2024-10-11 Thread Sreedhar p
Ensure models order it was crucial for one by one creation On Fri, Oct 11, 2024, 14:43 Sreedhar p wrote: > 1.I think its not using good authenticate, because authenticate is like > function which provides authentication to the user by taking username and > password and authenticate is an part o

Re: MicroService related issue

2024-10-11 Thread Sreedhar p
1.I think its not using good authenticate, because authenticate is like function which provides authentication to the user by taking username and password and authenticate is an part of authentication frsmework try to change that names 2.mention custom apps in settings.py file in installed apps 3.