From d0a0a545383a1a1f1b5cba30034d779079ceec5d Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 11 Nov 2005 03:25:52 +0000 Subject: [PATCH] Added INSTALLED_APPS to docs/settings.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1164 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/settings.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 ------------