From ddf203a86996cae8ecd544ac8a856261f4cb9852 Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 19 Feb 2024 11:15:53 +0300 Subject: [PATCH] healthcheck --- 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 00000000..cc35f74b --- /dev/null +++ b/app.json @@ -0,0 +1,13 @@ +{ + "healthchecks": { + "web": [ + { + "type": "startup", + "name": "web check", + "description": "Checking if the app responds to the GET /", + "path": "/", + "attempts": 3 + } + ] + } +}