Project example from the book Django By Example by Antonio Melé (Copyright © 2015 Packt Publishing) using Celery to launching asynchronous tasks.
git clone git@github.com:werberth/eshop.git eshop
cd eshop
python -m venv .env
source .env/bin/activate
pip install -r requirements.txt
Open 3 Terminal windows, and run the following commands:
python manage.py runserver
celery -A eshop worker -l info
celery -A eshop flower