When a shopping cart is checked out, you need to save an order into the database. Orders will contain information about customers and the products they are buying.
Create a new application for managing customer orders using the following command:
python manage.py startapp orders
Edit the settings.py file of your project and add the new application to the INSTALLED_APPS setting as follows:
INSTALLED_APPS = [
# ...
'orders.apps.OrdersConfig',
]
You have activated the orders application.