I am trying to connect my django instance to a mongo db cluster using django. I have checked from various sources and the way it is getting closer to work is:
I just setup Djongo and MongoDB Atlas with the following:
DATABASES = { 'default': { 'ENGINE': 'djongo', 'NAME': '', 'HOST': 'mongodb+srv://:@....mongodb.net/test?retryWrites=true', 'USER': '', 'PASSWORD': '', } }
Hope that helps!