Skip to content

Instantly share code, notes, and snippets.

@jayhale
Last active March 12, 2019 21:28
Show Gist options
  • Save jayhale/6f9970b05a2a3cfc2cc51653ee32b924 to your computer and use it in GitHub Desktop.
Save jayhale/6f9970b05a2a3cfc2cc51653ee32b924 to your computer and use it in GitHub Desktop.
Django on Zeit Now: now-django-example/example_app/urls.py
# now-django-example/example_app/urls.py
from django.urls import path
from example.views import index
urlpatterns = [
path('', index),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment