A simple app with a single management command that checks if your project is production ready.
If you use pip:
$ pip install django-production-ready
or
Checkout the source code from github and:
$ python setup.py install
Add the app to your INSTALLED_APPS in the settings.py.
INSTALLED_APPS = ( ... prodready, ... )
Run the management command to run the tests:
$ python manage.py is_it_ready