Additional resources
The following resources provide additional information related to the topics covered in this chapter:
- Source code for this chapter – https://github.com/PacktPublishing/Django-5-by-example/tree/main/Chapter08
- Static files for the project – https://github.com/PacktPublishing/Django-5-by-Example/tree/main/Chapter08/myshop/shop/static
- Django session settings – https://docs.djangoproject.com/en/5.0/ref/settings/#sessions
- Django built-in context processors – https://docs.djangoproject.com/en/5.0/ref/templates/api/#built-in-template-context-processors
- Information about
RequestContext
– https://docs.djangoproject.com/en/5.0/ref/templates/api/#django.template.RequestContext - Celery documentation – https://docs.celeryq.dev/en/stable/index.html
- Introduction to Celery – https://docs.celeryq.dev/en/stable/getting-started/introduction.html
- Official RabbitMQ Docker image –...