reading-notes

code fellows reading notes

View on GitHub

Reading-Notes

Code Fellows Python 401

Read: 31 - Django REST Framework & Docker

Beginner’s Guide to Docker

Django for APIs - Library Website

Django creates websites containing webpages, while Django REST Framework creates web APIs which are a collection of URL endpoints containing available HTTP verbs that return JSON

traditional Django project set up:

  1. creating a new project
  2. adding a new app
  3. updating models
  4. views
  5. urls
  6. templates

Bookmark and Review