Configurable health endpoint for applications hosted in ElasticBeanstalk.
-
Download this repo locally
-
Run the install
python setup.py install
- Add
django-site-health
to yourINSTALLED_APPS
INSTALLED_APPS = [
...
'django_site_health',
]
- Include the
django-health
URLconf in your project urls.py
url(r'^health/', include('django_site_health.urls')),
- Test that you can access the
/health/
on the dev server