Files
dokku/tests/apps/go-fail-postdeploy/app.json
2023-10-15 00:22:24 -04:00

27 lines
624 B
JSON

{
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-go"
}
],
"description": "Used in dokku's test suite",
"healthchecks": {
"web": [
{
"content": "go",
"name": "check-1",
"path": "/",
"type": "startup"
}
]
},
"logo": "https://raw.githubusercontent.com/dokku/dokku/master/docs/assets/dokku.png",
"name": "Sample go app",
"repository": "https://github.com/dokku/dokku",
"scripts": {
"dokku": {
"postdeploy": "touch /app/postdeploy.test \u0026\u0026 ls -la /app"
}
},
"website": "https://dokku.com/docs/"
}