refactor for healthz endpoint

This commit is contained in:
2025-01-12 09:23:38 -07:00
parent 2b1023fbd3
commit 666570b069
3 changed files with 33 additions and 12 deletions

13
app.json Normal file
View File

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