Skip to content

testdrivenio/django-celery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

20459d7 · Apr 8, 2025

History

9 Commits
Dec 21, 2022
Mar 14, 2020
Dec 21, 2022
Sep 7, 2023
Dec 21, 2022

Repository files navigation

Asynchronous Tasks with Django and Celery

Example of how to handle background processes with Django, Celery, and Docker.

Want to learn how to build this?

Check out the post.

Want to use this project?

Spin up the containers:

$ docker compose up -d --build

Open your browser to http://localhost:1337 to view the app or to http://localhost:5555 to view the Flower dashboard.

Trigger a new task:

$ curl -F type=0 http://localhost:1337/tasks/

Check the status:

$ curl http://localhost:1337/tasks/<TASK_ID>/