I am pretty new to django but experienced in Python and java web programming with different frameworks. I have made myself a nice little django app, but I cant seem to make it m
old question here ... (as much as myself :o)
but still worth of sharing updates for Django 3.x:
In project urls.py just add:
urlpatterns = [
path('', include('myapp.urls')),
path('myapp/', include('myapp.urls')),
#path('admin/', admin.site.urls),
]
Be aware that this solution will monopolize the whole django to your hungry&selfish app :-) !!!