From 336d5b39367e7adb4323b27023311ab4c55b035f Mon Sep 17 00:00:00 2001 From: Nathan Windisch Date: Thu, 20 Mar 2025 05:20:36 +0000 Subject: [PATCH] added app.json file to monitor for health checks in dokku --- app.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..0c6f3a0 --- /dev/null +++ b/app.json @@ -0,0 +1,13 @@ +{ + "healthchecks": { + "web": [ + { + "type": "startup", + "name": "web check", + "description": "Checking if the app responds to the /health/ready endpoint", + "path": "/v1/health", + "attempts": 3 + } + ] + } +}