فهرست منبع

Django related doc improvements. Closes #1224

Ask Solem 11 سال پیش
والد
کامیت
d13225046c
2فایلهای تغییر یافته به همراه6 افزوده شده و 4 حذف شده
  1. 5 0
      docs/django/first-steps-with-django.rst
  2. 1 4
      docs/faq.rst

+ 5 - 0
docs/django/first-steps-with-django.rst

@@ -133,6 +133,11 @@ To use this with your project you need to follow these three steps:
 
     3. Create the celery database tables.
 
+        This step will create the tables used to store results
+        when using the database result backend and the tables used
+        by the database periodic task scheduler.  You can skip
+        this step if you don't use these.
+
         If you are using south_ for schema migrations, you'll want to:
 
         .. code-block:: bash

+ 1 - 4
docs/faq.rst

@@ -188,10 +188,7 @@ Is Celery for Django only?
 
 **Answer:** No.
 
-Celery does not depend on Django anymore. To use Celery with Django you have
-to use the `django-celery`_ package.
-
-.. _`django-celery`: http://pypi.python.org/pypi/django-celery
+You can use Celery with any framework, web or otherwise.
 
 .. _faq-is-celery-for-rabbitmq-only: