Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 721 Bytes

README.rst

File metadata and controls

42 lines (27 loc) · 721 Bytes

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