Reflect Celery taskapp refactoring in the docs

Fixes https://github.com/pydanny/cookiecutter-django/issues/279
This commit is contained in:
jayfk 2015-07-21 11:27:50 +02:00
parent 64119a093a
commit 5da51a3ece

View File

@ -122,7 +122,7 @@ To run a celery worker:
.. code-block:: bash
cd {{cookiecutter.repo_name}}
celery -A {{cookiecutter.repo_name}} worker -l info
celery -A {{cookiecutter.repo_name}}.taskapp worker -l info
Please note: For Celerys import magic to work, it is important *where* the celery commands are run. If you are in the same folder with *manage.py*, you should be right.
{% endif %}