Django Project

Let's build our first Django project!

Initial set-up for Django

To run a Django application on Educative, we do not need to set anything up. All the code will run inside the special environment within the browser. It’s as easy as that!

Educative is designed in such a way that we do not get distracted by dependencies and instead get right into what is essential: the learning.

Creating a Django project

A Django project is a collection of applications and configurations that, when combined together, will make up the full web application, which is a complete website running with Django. We will discuss what a Django application ...