My request is to implement an API endpoint for a health check. For example, an endpoint at https://manynotes.mydomain.io/_healthz that would return a 200 response code if everything is working correctly, and some 4xx response if things aren't.
The Docker image that you ship contains curl so it's easy to come up with a simple one-liner that could check this endpoint, which would make it easy for Self-Hosted / HomeLab users using Docker or Podman to monitor that the service is healthy.
As an example, the Memos project has an endpoint at /healthz that does exactly this.
Looks like a really great little app, thank you!
My request is to implement an API endpoint for a health check. For example, an endpoint at
https://manynotes.mydomain.io/_healthzthat would return a200response code if everything is working correctly, and some4xxresponse if things aren't.The Docker image that you ship contains
curlso it's easy to come up with a simple one-liner that could check this endpoint, which would make it easy for Self-Hosted / HomeLab users using Docker or Podman to monitor that the service is healthy.As an example, the Memos project has an endpoint at
/healthzthat does exactly this.Looks like a really great little app, thank you!