├── .gitignore ├── .travis.yml ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py └── index.rst ├── prodready ├── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── is_it_ready.py ├── models.py ├── tests.py └── views.py ├── runtests.py ├── setup.py └── test_dir ├── 404.html └── 500.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | build/* 3 | *~ 4 | *.swp 5 | dist/* 6 | django_production_ready.egg-info 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/docs/index.rst -------------------------------------------------------------------------------- /prodready/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prodready/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prodready/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prodready/management/commands/is_it_ready.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/prodready/management/commands/is_it_ready.py -------------------------------------------------------------------------------- /prodready/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prodready/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/prodready/tests.py -------------------------------------------------------------------------------- /prodready/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agiliq/django-production-ready/HEAD/setup.py -------------------------------------------------------------------------------- /test_dir/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_dir/500.html: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------