How to configure settings.py in Django for MongoDB?

3.3k Views Asked by At

I have already completed a Django server installation and now I want to connect it to a MongoDB database. For that I changed my settings.py file of my project like this:

DATABASES = {
    'default': {
        'ENGINE': 'django_mongodb_engine', 
        'NAME': 'db_name',                   
        'USER': '',
        'PASSWORD': '',
        'HOST': '',                      
        'PORT': '',                      
    }
}

Now when I run in command prompt:

python manage.py runserver

it shows an error:

no module named django_mongodb_engine.base

How can I resolve this error?

1

There are 1 best solutions below

0
On

Add the following code in settings.py file :-

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.dummy',
        'NAME': 'my-db',
    }
}