feat: adds initial health check

This commit is contained in:
henrik
2024-11-13 19:32:57 +01:00
parent 492061e043
commit a806d51a8a
4 changed files with 46 additions and 0 deletions

13
app.json Normal file
View File

@@ -0,0 +1,13 @@
{
"healthchecks": {
"web": [
{
"type": "startup",
"name": "web check",
"description": "Checking if the app responds to the /health endpoint",
"path": "/healthz",
"attempts": 5
}
]
}
}