Recapping the Movies Store MVT architecture
The architecture diagram of the Movies Store that we designed in Chapter 1 served as a blueprint for designing the applications, layers, and code of the Movies Store. We have already implemented all the applications and elements described in that diagram. So, let’s quickly recap what we have accomplished so far.
Figure 12.4 displays the complete project tree directory structure and compares it with a simple version of the project architecture. We have successfully implemented four apps (accounts
, cart
, home
, and movies
), which contain most of the project’s functionalities.
Figure 12.4 – Project tree directory compared with simplified architecture
Figure 12.5 displays the complete architecture. We hope you understand each of the architectural elements better and how they relate to each other.
Figure 12.5 – Movies Store architecture
Let’s make...