{"library":"django-health-check","install":[{"cmd":"pip install django-health-check","imports":["INSTALLED_APPS = [\n    # ...\n    'health_check', # required\n    'health_check.db', # database check\n    'health_check.cache', # cache check\n    'health_check.storage', # storage check\n    'health_check.contrib.celery', # optional, for Celery\n    'health_check.contrib.psutil', # optional, for disk/memory\n    # ...\n]","from django.urls import include, path\n\nurlpatterns = [\n    # ...\n    path('health/', include('health_check.urls')), # or any desired path\n    # ...\n]","from django.apps import AppConfig\nfrom health_check.plugins import plugin_dir\nfrom myapp.checks import MyCustomHealthCheck\n\nclass MyAppConfig(AppConfig):\n    name = 'myapp'\n    def ready(self):\n        plugin_dir.register(MyCustomHealthCheck)"]},{"cmd":"pip install django-health-check[psutil,celery,redis]","imports":[]}]}