add healthchecks

This commit is contained in:
Chris Grimmett 2023-12-13 16:48:28 -08:00
parent 2a06f5af80
commit 497a02e257
1 changed files with 14 additions and 0 deletions

14
app.json Normal file
View File

@ -0,0 +1,14 @@
{
"healthchecks": {
"web": [
{
"type": "startup",
"name": "web check",
"description": "Checking for expecting string at /api",
"path": "/api",
"content": "Application Programmable Interface",
"attempts": 3
}
]
}
}