Django Project
Explore how to set up a Django project by creating the necessary directories and files, understanding their purpose, and running the development server. Learn to initiate your first Django application quickly and efficiently within an environment that simplifies dependencies and setup.
We'll cover the following...
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 is in the next lesson.
The following ...