In this book, you'll learn to build a modern online store with Django, following a modular, scalable structure designed for real-world projects. Throughout the chapters, we'll progress from the initial project creation to the implementation of complete modules such as the blog, the online store, filters, pagination, and integration with payment gateways like PayPal and Stripe.
The goal is for you to not only see code, but also understand how a professional Django application is organized and how you can reuse each part to create more robust solutions. I recommend following the steps in order, testing each example, and adapting the code to your own needs to reinforce your learning.
Chapter 1 - First steps: We will create the project that we will carry out in the course.
Chapter 2 - Models and Migrations: We will create the main migrations and models that we will use in the application.
Chapter 3 - CRUD for blog and store: In this chapter, we're going to create the CRUD for the blog, that is, the posts, categories, tags, among others.
Chapter 4 - Web Blog: We will create the blog for the end user, paginated listing with filters and details.
Chapter 5 - Online Store: Books: We will create the Store with payment gateways for PayPal and Stripe for the end user, with paginated listings with filters and details.
Chapter 6 - Online Store: Products: We'll create an online store for products instead of a book store to make it more generic.
Chapter 7 - Various changes: In this section, we'll implement several changes to the online store app, such as setting the language, dark mode, improving the design, and adding a module to view payments.