Skip to content

Commit 3a5194f

Browse files
committed
update to stay current
1 parent 49a1014 commit 3a5194f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
A simple example for the latest version of Celery (2.6.0rc4 as of this example)
2-
1+
A simple example for the latest version of Celery (v3.1.0rc1 as of this example)
32

43
In your project directory start celery:
54

6-
python tasks.py worker --loglevel=debug
5+
celery worker --app=tasks -l debug
76

87
then start the application:
98

109
python app.py
1110

1211
<optional> then run the testing script
1312

14-
python outside_test.py
13+
python external_test.py
File renamed without changes.

tasks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from __future__ import absolute_import
12
from celery import Celery
23

34
celery = Celery("tasks",

0 commit comments

Comments
 (0)