Migrate healthchecks from CHECKS to app.json

This commit is contained in:
Graham McIntire 2026-04-04 11:24:56 -05:00
parent 6d2f1fb4c3
commit 2a3309ca13
No known key found for this signature in database
GPG key ID: F4ABF488E6029E59
2 changed files with 15 additions and 5 deletions

5
CHECKS
View file

@ -1,5 +0,0 @@
WAIT=5
TIMEOUT=60
ATTEMPTS=3
/health ok

15
app.json Normal file
View file

@ -0,0 +1,15 @@
{
"healthchecks": {
"web": [
{
"type": "startup",
"name": "web check",
"path": "/health",
"attempts": 3,
"wait": 5,
"timeout": 60,
"content": "ok"
}
]
}
}