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
Source:stackexchange.com