├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── runtests.py ├── setup.py ├── tests ├── __init__.py ├── test_settings.py └── tests.py └── vitals ├── __init__.py ├── apps.py ├── checks.py ├── conf.py ├── urls.py └── views.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = vitals 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/README.md -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/tests/tests.py -------------------------------------------------------------------------------- /vitals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/vitals/__init__.py -------------------------------------------------------------------------------- /vitals/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/vitals/apps.py -------------------------------------------------------------------------------- /vitals/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/vitals/checks.py -------------------------------------------------------------------------------- /vitals/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/vitals/conf.py -------------------------------------------------------------------------------- /vitals/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/vitals/urls.py -------------------------------------------------------------------------------- /vitals/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LCOGT/django-vitals/HEAD/vitals/views.py --------------------------------------------------------------------------------