linkding/bookmarks/views/health.py
2024-01-27 11:29:16 +01:00

17 lines
411 B
Python

from django.db import connections
from django.http import JsonResponse
from bookmarks.views.settings import app_version
def health(request):
code = 200
response = {"version": app_version, "status": "healthy"}
try:
connections["default"].ensure_connection()
except Exception:
response["status"] = "unhealthy"
code = 500
return JsonResponse(response, status=code)