mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 08:29:56 +01:00
51 lines
1.1 KiB
JSON
51 lines
1.1 KiB
JSON
{
|
|
"addons": [
|
|
"dokku-postgres",
|
|
"dokku-redis"
|
|
],
|
|
"buildpacks": [
|
|
{
|
|
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
|
|
}
|
|
],
|
|
"description": "Used in dokku's test suite",
|
|
"env": {
|
|
"SECRET_TOKEN": {
|
|
"description": "A secret key for verifying the integrity of signed cookies.",
|
|
"value": "secret"
|
|
},
|
|
"WEB_CONCURRENCY": {
|
|
"description": "The number of processes to run.",
|
|
"generator": "echo 5"
|
|
}
|
|
},
|
|
"healthchecks": {
|
|
"web": [
|
|
{
|
|
"attempts": 2,
|
|
"content": "nodejs/express",
|
|
"name": "check-1",
|
|
"path": "/",
|
|
"timeout": 5,
|
|
"type": "startup",
|
|
"wait": 2
|
|
}
|
|
]
|
|
},
|
|
"image": "gliderlabs/herokuish:latest-24",
|
|
"keywords": [
|
|
"nodejs",
|
|
"express",
|
|
"testing"
|
|
],
|
|
"logo": "https://raw.githubusercontent.com/dokku/dokku/master/docs/assets/dokku.png",
|
|
"name": "Sample node.js express app",
|
|
"repository": "https://github.com/dokku/dokku",
|
|
"scripts": {
|
|
"dokku": {
|
|
"postdeploy": "touch /app/postdeploy.test",
|
|
"predeploy": "touch /app/predeploy.test"
|
|
}
|
|
},
|
|
"website": "https://dokku.com/docs/"
|
|
} |