Search⌘ K

Overview: Creating a Django Project

Explore backend development fundamentals by creating a Django project integrated with PostgreSQL. Understand how to set up RESTful APIs, manage authentication using JSON Web Tokens, and grasp core Django components essential for building scalable web applications.

Part 1: Technical background

In this part of the course, we will learn how to build a REST API with Django and Django REST. This part provides the knowledge required to connect Django to a PostgreSQL database, add authentication using JSON Web Tokens, create RESTful resources supporting complex CRUD operations, and add tests to a Django application. We will specifically build the backend of a social media web application called Postagram with the most common features of a social media application, ...