Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 667 Bytes

README.rst

File metadata and controls

38 lines (24 loc) · 667 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