Creating a New Django Project
Learn to bootstrap a new Django project.
We'll cover the following...
In Django, a project is an umbrella that envelops each application. For example, we can have an e-commerce Django project within which there are several applications, such as payment, order, shipping, cart, and so on. The benefit of this approach is that we can reuse each Django application inside another Django project.
When we initialize a new Django project, Django provides us with some basic files to help us get started quickly.
Install Django
To ...