ソースを参照

Autogenerated documentation for github.

Ask Solem 16 年 前
コミット
25dd2aea96
3 ファイル変更7 行追加7 行削除
  1. 1 1
      index.html
  2. 3 3
      introduction.html
  3. 3 3
      sources/introduction.txt

+ 1 - 1
index.html

@@ -56,7 +56,7 @@
 <li class="toctree-l2"><a class="reference external" href="introduction.html#installation">Installation</a></li>
 <li class="toctree-l2"><a class="reference external" href="introduction.html#usage">Usage</a><ul>
 <li class="toctree-l3"><a class="reference external" href="introduction.html#installing-rabbitmq">Installing RabbitMQ</a></li>
-<li class="toctree-l3"><a class="reference external" href="introduction.html#configuring-your-django-project">Configuring your Django project</a></li>
+<li class="toctree-l3"><a class="reference external" href="introduction.html#configuring-your-django-project-to-use-celery">Configuring your Django project to use Celery</a></li>
 <li class="toctree-l3"><a class="reference external" href="introduction.html#running-the-celery-worker-daemon">Running the celery worker daemon</a></li>
 <li class="toctree-l3"><a class="reference external" href="introduction.html#defining-and-executing-tasks">Defining and executing tasks</a></li>
 <li class="toctree-l3"><a class="reference external" href="introduction.html#auto-discovery-of-tasks">Auto-discovery of tasks</a></li>

+ 3 - 3
introduction.html

@@ -127,8 +127,8 @@ by doing the following,:</p>
 <div class="section" id="installing-rabbitmq">
 <h3>Installing RabbitMQ<a class="headerlink" href="#installing-rabbitmq" title="Permalink to this headline">¶</a></h3>
 </div>
-<div class="section" id="configuring-your-django-project">
-<h3>Configuring your Django project<a class="headerlink" href="#configuring-your-django-project" title="Permalink to this headline">¶</a></h3>
+<div class="section" id="configuring-your-django-project-to-use-celery">
+<h3>Configuring your Django project to use Celery<a class="headerlink" href="#configuring-your-django-project-to-use-celery" title="Permalink to this headline">¶</a></h3>
 </div>
 <div class="section" id="running-the-celery-worker-daemon">
 <h3>Running the celery worker daemon<a class="headerlink" href="#running-the-celery-worker-daemon" title="Permalink to this headline">¶</a></h3>
@@ -137,7 +137,7 @@ see what&#8217;s going on without consulting the logfile:</p>
 <div class="highlight-python"><pre>$ python manage.py celeryd</pre>
 </div>
 <p>However, in production you&#8217;ll probably want to run the worker in the
-background as daemon instead:</p>
+background as a daemon instead:</p>
 <div class="highlight-python"><pre>$ python manage.py celeryd --daemon</pre>
 </div>
 <p>For help on command line arguments to the worker daemon, you can execute the

+ 3 - 3
sources/introduction.txt

@@ -94,8 +94,8 @@ Installing RabbitMQ
 -------------------
 
 
-Configuring your Django project
--------------------------------
+Configuring your Django project to use Celery
+---------------------------------------------
 
 Running the celery worker daemon
 --------------------------------
@@ -106,7 +106,7 @@ see what's going on without consulting the logfile::
     $ python manage.py celeryd
 
 However, in production you'll probably want to run the worker in the
-background as daemon instead::
+background as a daemon instead::
 
     $ python manage.py celeryd --daemon