├── .bumpversion.cfg ├── .editorconfig ├── .github └── workflows │ ├── python-release.yml │ └── python-test.yml ├── .gitignore ├── CHANGES ├── LICENSE ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _templates │ └── sidebar-intro.html ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── pyproject.toml ├── sandbox ├── __init__.py ├── manage.py ├── settings.py ├── urls.py └── wsgi.py ├── setup.cfg ├── setup.py ├── src └── django_healthchecks │ ├── __init__.py │ ├── admin.py │ ├── checker.py │ ├── contrib.py │ ├── heartbeats.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── urls.py │ └── views.py ├── tests ├── conftest.py ├── test_checker.py ├── test_contrib.py ├── test_heartbeats.py ├── test_urls.py └── test_views.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/sidebar-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/docs/_templates/sidebar-intro.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | -e .[docs] 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/pyproject.toml -------------------------------------------------------------------------------- /sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/sandbox/manage.py -------------------------------------------------------------------------------- /sandbox/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/sandbox/settings.py -------------------------------------------------------------------------------- /sandbox/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/sandbox/urls.py -------------------------------------------------------------------------------- /sandbox/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/sandbox/wsgi.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/setup.py -------------------------------------------------------------------------------- /src/django_healthchecks/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.5.0" 2 | -------------------------------------------------------------------------------- /src/django_healthchecks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/admin.py -------------------------------------------------------------------------------- /src/django_healthchecks/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/checker.py -------------------------------------------------------------------------------- /src/django_healthchecks/contrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/contrib.py -------------------------------------------------------------------------------- /src/django_healthchecks/heartbeats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/heartbeats.py -------------------------------------------------------------------------------- /src/django_healthchecks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/django_healthchecks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_healthchecks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/models.py -------------------------------------------------------------------------------- /src/django_healthchecks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/urls.py -------------------------------------------------------------------------------- /src/django_healthchecks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/src/django_healthchecks/views.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/tests/test_checker.py -------------------------------------------------------------------------------- /tests/test_contrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/tests/test_contrib.py -------------------------------------------------------------------------------- /tests/test_heartbeats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/tests/test_heartbeats.py -------------------------------------------------------------------------------- /tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/tests/test_urls.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labd/django-healthchecks/HEAD/tox.ini --------------------------------------------------------------------------------