Skip to content

Instantly share code, notes, and snippets.

@selynna
Created April 29, 2019 19:06
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 selynna/0a51cf60a52dd4162a67e5599838edaa to your computer and use it in GitHub Desktop.
Save selynna/0a51cf60a52dd4162a67e5599838edaa to your computer and use it in GitHub Desktop.
# django_azure_demo/urls.py
from django.conf.urls import url, include
from django.contrib import admin
from django.urls import path
urlpatterns = [
path('', include('food.urls')),
path('admin/', admin.site.urls),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment