settings.txt 9.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
===============
Django settings
===============

A Django settings file contains all the configuration of your Django
installation. This document explains how settings work and which settings are
available.

The basics
==========

A settings file is just a Python module with module-level variables.

Here are a couple of example settings::

16
    ALLOWED_HOSTS = ['www.example.com']
17 18 19
    DEBUG = False
    DEFAULT_FROM_EMAIL = 'webmaster@example.com'

20 21 22 23 24
.. note::

    If you set :setting:`DEBUG` to ``False``, you also need to properly set
    the :setting:`ALLOWED_HOSTS` setting.

25 26
Because a settings file is a Python module, the following apply:

27 28 29
* It doesn't allow for Python syntax errors.
* It can assign settings dynamically using normal Python syntax.
  For example::
30

31
      MY_SETTING = [str(i) for i in range(30)]
32

33
* It can import values from other settings files.
34 35 36 37 38 39

.. _django-settings-module:

Designating the settings
========================

40 41
.. envvar:: DJANGO_SETTINGS_MODULE

42 43 44 45 46 47 48
When you use Django, you have to tell it which settings you're using. Do this
by using an environment variable, ``DJANGO_SETTINGS_MODULE``.

The value of ``DJANGO_SETTINGS_MODULE`` should be in Python path syntax, e.g.
``mysite.settings``. Note that the settings module should be on the
Python `import search path`_.

49
.. _import search path: http://www.diveintopython.net/getting_to_know_python/everything_is_an_object.html
50

51
The django-admin utility
52 53
---------------------------

54
When using :doc:`django-admin </ref/django-admin>`, you can either set the
55 56 57 58 59 60
environment variable once, or explicitly pass in the settings module each time
you run the utility.

Example (Unix Bash shell)::

    export DJANGO_SETTINGS_MODULE=mysite.settings
61
    django-admin runserver
62 63 64 65

Example (Windows shell)::

    set DJANGO_SETTINGS_MODULE=mysite.settings
66
    django-admin runserver
67 68 69

Use the ``--settings`` command-line argument to specify the settings manually::

70
    django-admin runserver --settings=mysite.settings
71

72
.. _django-admin: ../django-admin/
73

74
On the server (mod_wsgi)
75 76
--------------------------

77 78
In your live server environment, you'll need to tell your WSGI
application what settings file to use. Do that with ``os.environ``::
79

80
    import os
81

82 83 84
    os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'

Read the :doc:`Django mod_wsgi documentation
85
</howto/deployment/wsgi/modwsgi>` for more information and other common
86
elements to a Django WSGI application.
87 88 89 90 91

Default settings
================

A Django settings file doesn't have to define any settings if it doesn't need
92 93
to. Each setting has a sensible default value. These defaults live in the
module :file:`django/conf/global_settings.py`.
94 95 96

Here's the algorithm Django uses in compiling settings:

97 98 99
* Load settings from ``global_settings.py``.
* Load settings from the specified settings file, overriding the global
  settings as necessary.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

Note that a settings file should *not* import from ``global_settings``, because
that's redundant.

Seeing which settings you've changed
------------------------------------

There's an easy way to view which of your settings deviate from the default
settings. The command ``python manage.py diffsettings`` displays differences
between the current settings file and Django's default settings.

For more, see the :djadmin:`diffsettings` documentation.

Using settings in Python code
=============================

In your Django apps, use settings by importing the object
``django.conf.settings``. Example::

    from django.conf import settings

    if settings.DEBUG:
        # Do something

Note that ``django.conf.settings`` isn't a module -- it's an object. So
importing individual settings is not possible::

    from django.conf.settings import DEBUG  # This won't work.

Also note that your code should *not* import from either ``global_settings`` or
your own settings file. ``django.conf.settings`` abstracts the concepts of
default settings and site-specific settings; it presents a single interface.
It also decouples the code that uses settings from the location of your
settings.

Altering settings at runtime
============================

You shouldn't alter settings in your applications at runtime. For example,
don't do this in a view::

    from django.conf import settings

    settings.DEBUG = True   # Don't do this!

The only place you should assign to settings is in a settings file.

Security
========

Because a settings file contains sensitive information, such as the database
password, you should make every attempt to limit access to it. For example,
change its file permissions so that only you and your Web server's user can
read it. This is especially important in a shared-hosting environment.

Available settings
==================

158
For a full list of available settings, see the :doc:`settings reference </ref/settings>`.
159 160 161 162 163 164 165

Creating your own settings
==========================

There's nothing stopping you from creating your own settings, for your own
Django apps. Just follow these conventions:

166 167
* Setting names are in all uppercase.
* Don't reinvent an already-existing setting.
168

169 170
For settings that are sequences, Django itself uses lists, but this is only
a convention.
171

172 173 174 175 176 177 178 179 180 181 182
.. _settings-without-django-settings-module:

Using settings without setting DJANGO_SETTINGS_MODULE
=====================================================

In some cases, you might want to bypass the ``DJANGO_SETTINGS_MODULE``
environment variable. For example, if you're using the template system by
itself, you likely don't want to have to set up an environment variable
pointing to a settings module.

In these cases, you can configure Django's settings manually. Do this by
183 184 185
calling:

.. function:: django.conf.settings.configure(default_settings, **settings)
186 187 188 189 190

Example::

    from django.conf import settings

191
    settings.configure(DEBUG=True)
192 193 194 195 196 197 198 199 200 201 202 203

Pass ``configure()`` as many keyword arguments as you'd like, with each keyword
argument representing a setting and its value. Each argument name should be all
uppercase, with the same name as the settings described above. If a particular
setting is not passed to ``configure()`` and is needed at some later point,
Django will use the default setting value.

Configuring Django in this fashion is mostly necessary -- and, indeed,
recommended -- when you're using a piece of the framework inside a larger
application.

Consequently, when configured via ``settings.configure()``, Django will not
204 205 206 207
make any modifications to the process environment variables (see the
documentation of :setting:`TIME_ZONE` for why this would normally occur). It's
assumed that you're already in full control of your environment in these
cases.
208 209 210 211 212 213 214 215 216 217

Custom default settings
-----------------------

If you'd like default values to come from somewhere other than
``django.conf.global_settings``, you can pass in a module or class that
provides the default settings as the ``default_settings`` argument (or as the
first positional argument) in the call to ``configure()``.

In this example, default settings are taken from ``myapp_defaults``, and the
218
:setting:`DEBUG` setting is set to ``True``, regardless of its value in
219 220 221 222 223 224 225 226 227 228
``myapp_defaults``::

    from django.conf import settings
    from myapp import myapp_defaults

    settings.configure(default_settings=myapp_defaults, DEBUG=True)

The following example, which uses ``myapp_defaults`` as a positional argument,
is equivalent::

229
    settings.configure(myapp_defaults, DEBUG=True)
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

Normally, you will not need to override the defaults in this fashion. The
Django defaults are sufficiently tame that you can safely use them. Be aware
that if you do pass in a new default module, it entirely *replaces* the Django
defaults, so you must specify a value for every possible setting that might be
used in that code you are importing. Check in
``django.conf.settings.global_settings`` for the full list.

Either configure() or DJANGO_SETTINGS_MODULE is required
--------------------------------------------------------

If you're not setting the ``DJANGO_SETTINGS_MODULE`` environment variable, you
*must* call ``configure()`` at some point before using any code that reads
settings.

If you don't set ``DJANGO_SETTINGS_MODULE`` and don't call ``configure()``,
Django will raise an ``ImportError`` exception the first time a setting
is accessed.

If you set ``DJANGO_SETTINGS_MODULE``, access settings values somehow, *then*
call ``configure()``, Django will raise a ``RuntimeError`` indicating
251 252 253 254 255 256 257 258 259 260
that settings have already been configured. There is a property just for this
purpose:

.. attribute: django.conf.settings.configured

For example::

    from django.conf import settings
    if not settings.configured:
        settings.configure(myapp_defaults, DEBUG=True)
261 262 263 264 265 266 267

Also, it's an error to call ``configure()`` more than once, or to call
``configure()`` after any setting has been accessed.

It boils down to this: Use exactly one of either ``configure()`` or
``DJANGO_SETTINGS_MODULE``. Not both, and not neither.

268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
Calling ``django.setup()`` is required for "standalone" Django usage
--------------------------------------------------------------------

If you're using components of Django "standalone" -- for example, writing a
Python script which loads some Django templates and renders them, or uses the
ORM to fetch some data -- there's one more step you'll need in addition to
configuring settings.

After you've either set :envvar:`DJANGO_SETTINGS_MODULE` or called
``configure()``, you'll need to call :func:`django.setup()` to load your
settings and populate Django's application registry. For example::

    from django.conf import settings
    from myapp import myapp_defaults

    settings.configure(default_settings=myapp_defaults, DEBUG=True)
    django.setup()

    # Now this script can use any part of Django it needs.

Note that calling ``django.setup()`` is only necessary if your code is truly
standalone. When invoked by your Web server, or through :doc:`django-admin
</ref/django-admin>`, Django will handle this for you.
291 292 293 294 295

.. seealso::

    :doc:`The Settings Reference </ref/settings>`
        Contains the complete list of core and contrib app settings.