Skip to content

Instantly share code, notes, and snippets.

@Adarshreddyash
Created July 28, 2020 12:10
Show Gist options
  • Select an option

  • Save Adarshreddyash/63810c754ace15bbd56c4b53c98e88ef to your computer and use it in GitHub Desktop.

Select an option

Save Adarshreddyash/63810c754ace15bbd56c4b53c98e88ef to your computer and use it in GitHub Desktop.
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