ソースを参照

Fix confusing parts in Django broker docs

Ask Solem 13 年 前
コミット
4e406addeb
1 ファイル変更1 行追加12 行削除
  1. 1 12
      docs/getting-started/brokers/django.rst

+ 1 - 12
docs/getting-started/brokers/django.rst

@@ -21,21 +21,10 @@ configuration values.
 
     BROKER_URL = "django://"
 
-#. Add :mod:`django.transport.kombu` to `INSTALLED_APPS`::
+#. Add :mod:`kombu.transport.django` to `INSTALLED_APPS`::
 
     INSTALLED_APPS = ("kombu.transport.django", )
 
-#. Verify your database settings::
-
-    DATABASE_ENGINE = "mysql"
-    DATABASE_NAME = "mydb"
-    DATABASE_USER = "myuser"
-    DATABASE_PASSWORD = "secret"
-
-  The above is just an example, if you haven't configured your database before
-  you should read the Django database settings reference:
-  http://docs.djangoproject.com/en/1.1/ref/settings/#database-engine
-
 #. Sync your database schema::
 
     $ python manage.py syncdb