Created
July 28, 2020 12:10
-
-
Save Adarshreddyash/63810c754ace15bbd56c4b53c98e88ef to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.contrib import admin | |
| from django.urls import path , include , re_path | |
| urlpatterns = [ | |
| path('admin/', admin.site.urls), | |
| re_path('api/(?P<version>(v1|v2))/', include('music.urls')), | |
| ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) #tgis helps in accessing media with native elements |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment