From the course: Building a Personal Portfolio with Django

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Creating a Django app in a project

Creating a Django app in a project

From the course: Building a Personal Portfolio with Django

Start my 1-month free trial

Creating a Django app in a project

- [Instructor] We've just finished creating a Django project. Now it's time to create an app in our Django project, and I sorta wanna walk through this and give you better understanding of what's the difference between a project and an app. So here on the screen, we've got what's representing a ticketing website. This website has many components that it's made up of. There's part of the website that covers events, part of it's a blog, and part of it is accounts letting people log in and out of the website. In the Django world, the whole ticketing website is considered the project, and then the individual pieces are the apps. The big reason for this is it makes it very easy to work with. Let's say we have a change that we wanna make to our blog. We can dive specifically into the blog app and say this is the one point I wanna fix in the blog, make that change, and now everything's ready to rock and roll. So with our Django web project, we wanna create a specific app for working with…

Contents