umutbozkurt/django-rest-framework-mongoengine

ettings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.

Alireza-Ahmady opened this issue · 2 comments

ettings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.
uoxiu commented

Hello, you can set:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': ':memory:',
    }
}
uoxiu commented

A good alternative:

DATABASES = {
	'default': {
		'ENGINE': '',
	},
}

source: https://staltz.com/djangoconfi-mongoengine/#/14