dawarich/app.json

21 lines
522 B
JSON
Raw Normal View History

2023-02-03 09:42:56 -05:00
{
2025-05-02 14:20:34 -04:00
"name": "dawarich",
"description": "Dawarich",
"buildpacks": [
{ "url": "https://github.com/heroku/heroku-buildpack-nodejs.git" },
{ "url": "https://github.com/heroku/heroku-buildpack-ruby.git" }
],
2025-07-02 15:42:28 -04:00
"healthchecks": {
"web": [
{
"type": "startup",
"name": "web check",
"description": "Checking if the app responds to the /api/v1/health endpoint",
"path": "/api/v1/health",
"attempts": 10,
"interval": 10
}
]
2023-02-03 09:42:56 -05:00
}
}