I want to create a new app using 'python manage.py startapp' in my files but I am getting this error.
raise ImproperlyConfigured("settings.DATABASES is improperly configured. " django.core.exceptions.ImproperlyConfigured: settings.DATABASES is improperly configured. Please supply the ENGINE value. Check settings documentation for more details.
here is the databases in my seetings.py:
DATABASES = {
'default': dj_database_url.config(),
}
db_from_env = dj_database_url.config()
DATABASES['default'].update(db_from_env)
This is after migrating to heroku.