Django barfs with
ImportError at /store/ No module named store
But right there is the debug message there is the setting
IN
thanks to Paul Draper, after I changed the
re_path('api/(?P(v1|v2))/', include('music.urls'))
into :
re_path('api/(?P(v1|v2))/', include('musicservices.music.urls'))
the problem resolved.