summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-11 03:25:52 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-11 03:25:52 +0000
commitd0a0a545383a1a1f1b5cba30034d779079ceec5d (patch)
tree4807da578ec1047e8bdd488e35329831357a8abb /docs
parent57d2a0f62c0b95e79e1262d4331b3e2c71e6ced6 (diff)
Added INSTALLED_APPS to docs/settings.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1164 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/settings.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/settings.txt b/docs/settings.txt
index 9b7eb2004a..a44a2e0994 100644
--- a/docs/settings.txt
+++ b/docs/settings.txt
@@ -358,6 +358,17 @@ Default: ``('/cgi-bin/', '/_vti_bin', '/_vti_inf')``
A tuple of strings that specify beginnings of URLs that should be ignored by
the 404 e-mailer. See ``SEND_BROKEN_LINK_EMAILS`` and ``IGNORABLE_404_ENDS``.
+INSTALLED_APPS
+--------------
+
+Default: Not defined
+
+A tuple of strings designating all applications that are enabled in this Django
+installation. Each string should be a full Python path to a Python package that
+contains a Django application, as created by `django-admin.py startapp`_.
+
+.. _django-admin.py startapp: http://www.djangoproject.com/documentation/django_admin/#startapp-appname
+
INTERNAL_IPS
------------