1.2 Store app folder
The migration folder will store the modifications done in the databases
The __ init __.py file serves the same purpose as the ecommerce file to allow the program to be initialized
The admin.py file will contain what will appear in the admin page of the website
The models.py file will contain the models of the databases necessary for the creation of the products
The apps.py file declares the name of the app to be added in the main configuration
The tests.py file is useful for performing tests and experiment features
The views.py file will contains what will appear in each url mentioned in the urls.py file
Last updated