Django-Oscar - Creating Products - Part 2

Dashboard
Access through:  http://localhost:8000/dashboard/
Login with superuser

Creating a Partner Dashboard → Fulfilment → Partners
Example: BookRetailer

Creating a Product Type Dashboard → Catalog → Product Types
Example: Books

Creating a Category Dashboard → Catalog → Categories
Example: Engineering Books

Creating a Product Dashboard → Catalog → Products
Example: The C Programming Language

 

Partners, Product Types and Categories are required fields to create products therefore they must be created before the product is created.


Replacing the Haystack with whoosh in order to list products:

HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine',
        'PATH': BASE_DIR / 'whoosh_index',
    },
}
pip install whoosh
python manage.py rebuild_index