Skip to content

Instantly share code, notes, and snippets.

@hamedsj
Created May 3, 2020 04:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hamedsj/ed7334e37fc69efc8d456545cc522d63 to your computer and use it in GitHub Desktop.
Save hamedsj/ed7334e37fc69efc8d456545cc522d63 to your computer and use it in GitHub Desktop.
mysite/urls.py
from django.contrib import admin
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('myapp.urls'))
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment