[Answer]-Django settings.py value error

1👍

The reason is that you have empty ROOT_URLCONF. It does not have any default value defined, so you should provide actual url config for your project here. Most likely it’s just yourprojectname.urls, like this

ROOT_URLCONF = 'yourprojectname.urls'

See django URLDispacther docs for details.

👤J0HN

Leave a comment