We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f3b18f commit 60d56b9Copy full SHA for 60d56b9
README.md
@@ -1 +1,29 @@
1
-# Django + Celery
+# Asynchronous Tasks with Django and Celery
2
+
3
+Example of how to handle background processes with Django, Celery, and Docker.
4
5
+## Want to learn how to build this?
6
7
+Check out the [post](https://testdriven.io/blog/django-and-celery/).
8
9
+## Want to use this project?
10
11
+Spin up the containers:
12
13
+```sh
14
+$ docker-compose up -d --build
15
+```
16
17
+Open your browser to http://localhost:1337 to view the app or to http://localhost:5555 to view the Flower dashboard.
18
19
+Trigger a new task:
20
21
22
+$ curl -F type=0 http://localhost:1337/tasks/
23
24
25
+Check the status:
26
27
28
+$ curl http://localhost:1337/tasks/<TASK_ID>/
29
0 commit comments