django-production-ready

A Django app that runs simple tests to check if your app is production ready.


License
BSD-3-Clause
Install
pip install django-production-ready==0.1.1

Documentation

Django Production Ready

A simple app with a single management command that checks if your project is production ready.

Install

  • 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, ... )

Usage

Run the management command to run the tests:

$ python manage.py is_it_ready

Running tests

$ python runtests.py