Skip to content

Commit

Permalink
Rendered documentation for Github Pages.
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jun 16, 2012
1 parent 0a75efc commit 433fd8c
Show file tree
Hide file tree
Showing 173 changed files with 2,943 additions and 3,094 deletions.
12 changes: 12 additions & 0 deletions _sources/configuration.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,18 @@ to be used.

If not set then the systems default local time zone is used.

.. warning::

Celery requires the :mod:`pytz` library to be installed,
when using custom time zones (other than UTC). You can
install it using :program:`pip` or :program:`easy_install`::

$ pip install pytz

Pytz is a library that defines the timzones of the world,
it changes quite frequently so it is not included in the Python Standard
Library.

.. _conf-tasks:

Task settings
Expand Down
6 changes: 3 additions & 3 deletions _sources/django/first-steps-with-django.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ parts of the Celery documentation.
Starting the worker process
===========================

You can start a worker instance by using the ``celeryd`` manage command::
You can start a worker instance by using the ``celery worker`` manage command::

$ python manage.py celeryd --loglevel=info
$ python manage.py celery worker --loglevel=info

In production you probably want to run the worker in the
background as a daemon, see `Running Celery as a daemon`_.
For a complete listing of the command line options available, use the help command::

$ python manage.py help celeryd
$ python manage.py celery help

.. _`Running Celery as a Daemon`:
http://docs.celeryproject.org/en/latest/tutorials/daemonizing.html
Expand Down
2 changes: 1 addition & 1 deletion _sources/getting-started/first-steps-with-celery.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ for very small installations. Celery can use the SQLAlchemy and Django ORM.

In addition to the above, there are several other transport implementations
to choose from, including :ref:`broker-mongodb`, :ref:`broker-django`,
:ref:`broker-sqlalchemy`, and SQS.
:ref:`broker-sqlalchemy`, and :ref:`Amazon SQS <broker-sqs>`.

.. _`RabbitMQ`: http://www.rabbitmq.com/
.. _`Redis`: http://redis.io/
Expand Down
2 changes: 1 addition & 1 deletion _sources/getting-started/intro.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Celery is…
- :ref:`RabbitMQ <broker-rabbitmq>`, :ref:`Redis <broker-redis>`,
- :ref:`MongoDB <broker-mongodb>`, :ref:`Beanstalk <broker-beanstalk>`,
- :ref:`CouchDB <broker-couchdb>`, :ref:`SQLAlchemy <broker-sqlalchemy>`,
- :ref:`Django ORM <broker-django>`, and more…
- :ref:`Django ORM <broker-django>`, :ref:`Amazon SQS <broker-sqs>`, and more…

- **Concurrency**

Expand Down
Loading

0 comments on commit 433fd8c

Please sign in to comment.