https://simpleisbetterthancomplex.com/series/2017/09/04/a-complete-beginners-guide-to-django-part-1.html
https://github.com/sibtc/django-beginners-guide/tree/v0.1-lw
#urls.py
from django.conf.urls import url
from django.contrib import admin
from boards import views
urlpatterns = [
url(r'^$', views.home, name='home'),
url(r'^admin/', admin.site.urls),
] #views.py
from django.http import HttpResponse
def home(request):
return HttpResponse('Hello, World!')