We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a1014 commit 3a5194fCopy full SHA for 3a5194f
README
@@ -1,14 +1,13 @@
1
-A simple example for the latest version of Celery (2.6.0rc4 as of this example)
2
-
+A simple example for the latest version of Celery (v3.1.0rc1 as of this example)
3
4
In your project directory start celery:
5
6
- python tasks.py worker --loglevel=debug
+ celery worker --app=tasks -l debug
7
8
then start the application:
9
10
python app.py
11
12
<optional> then run the testing script
13
14
- python outside_test.py
+ python external_test.py
outside_test.py external_test.pyoutside_test.py renamed to external_test.py
tasks.py
@@ -1,3 +1,4 @@
+from __future__ import absolute_import
from celery import Celery
celery = Celery("tasks",
0 commit comments