added app.json file to monitor for health checks in dokku

This commit is contained in:
Nathan Windisch 2025-03-20 05:20:36 +00:00
parent 6a1f38d84d
commit 336d5b3936

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/ready endpoint",
"path": "/v1/health",
"attempts": 3
}
]
}
}