Add good initial dev settings to docs.

This commit is contained in:
Berker Peksag 2011-11-26 22:11:09 +02:00 коммит произвёл Ricky Rosario
Родитель b60099a5f8
Коммит e13f9c2afc
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -114,6 +114,11 @@ directory, and putting this line in it::
Now you can copy and modify any settings from ``settings.py`` into
``settings_local.py`` and the value will override the default.
For local development you will want to add the following settings::
DEBUG = True
TEMPLATE_DEBUG = DEBUG
SESSION_COOKIE_SECURE = False
Redis
-----