mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 20:19:52 +01:00
This is the most-used app and therefore most-used app.json file, so this should allow us to test that moving to a new json parser works as expected.
23 lines
484 B
JSON
23 lines
484 B
JSON
{
|
|
"healthchecks": {
|
|
"web": [
|
|
{
|
|
"attempts": 2,
|
|
"content": "python/http.server",
|
|
"name": "check-1",
|
|
"path": "/",
|
|
"timeout": 5,
|
|
"type": "startup",
|
|
"wait": 2
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"dokku": {
|
|
// this is a comment for the postdeploy script
|
|
"postdeploy": "touch /app/postdeploy.test",
|
|
// this is a comment for the predeploy script
|
|
"predeploy": "touch /app/predeploy.test"
|
|
}
|
|
}
|
|
} |