Tasks
A task is a code block that is executed in the Celery process, you usually go to use the tasks within a Django command, inside an action or inside a Django view. It is used to implement asynchronicity within the Django process.
Writing tasks
Read this
Where is the task?
It where in breathecode/APP_NAME/tasks.py
.