mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
17 lines
411 B
Python
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)
|