Commit 39769a5a authored by Michal Čihař's avatar Michal Čihař

Document checks

parent e8965f3f
......@@ -122,21 +122,25 @@ def performance(request):
),
'production-email',
))
# libravatar library
checks.append((
_('Federated avatar support'),
HAS_LIBRAVATAR,
'production-avatar',
))
# PyICU library
checks.append((
_('PyICU library'),
HAS_ICU,
'production-pyicu',
))
# Cookie signing key
checks.append((
_('Secret key'),
settings.SECRET_KEY != settings_example.SECRET_KEY,
'production-secret',
))
# Allowed hosts for Django 1.5
if django.VERSION > (1, 5):
checks.append((
_('Allowed hosts'),
......@@ -144,6 +148,8 @@ def performance(request):
'production-hosts',
))
# Check for serving static files
# This uses CSS magic to hide this check when CSS is properly loaded.
checks.append((
_('Admin static files'),
False,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment