Managing static files (e.g. images, JavaScript, CSS)

Websites generally need to serve additional files such as images, JavaScript, or CSS. In Django, we refer to these files as “static files”. Django provides django.contrib

2016-10-09 18:39:02
Deployment checklist

The Internet is a hostile environment. Before deploying your Django project, you should take some time to review your settings, with security, performance, and operations in

2016-10-09 18:36:29
Integrating Django with a legacy database

While Django is best suited for developing new applications, it’s quite possible to integrate it into legacy databases. Django includes a couple of utilities to automate as

2016-10-09 18:38:58
core.management.BaseCommand

class BaseCommand [source] The base class from which all management commands ultimately derive

2016-10-09 18:34:54
core.management.AppCommand

class AppCommand A management command which takes one or more installed application labels as arguments, and does something

2016-10-09 18:34:54
core.management.BaseCommand.missing_args_message

BaseCommand.missing_args_message If your command defines mandatory positional arguments, you can customize the message error

2016-10-09 18:34:55
core.management.AppCommand.handle_app_config()

AppCommand.handle_app_config(app_config, **options) Perform the command’s actions for app_config, which will be

2016-10-09 18:34:54
views.debug.SafeExceptionReporterFilter

class SafeExceptionReporterFilter [source]

2016-10-09 18:40:43
template.Library.assignment_tag()

django.template.Library.assignment_tag() Deprecated since version 1.9:

2016-10-09 18:39:47
How to use Django with uWSGI

uWSGI is a fast, self-healing and developer/sysadmin-friendly application

2016-10-09 18:38:38