DATABASES = {
        'default': {
            'ENGINE': 'djongo',
            'NAME': 'DjongoTutorial',
            'ENFORCE_SCHEMA': True,
            'CLIENT': {
                'host': 'mongodb://localhost:27017/'
            }
        }
}