apps
Version:
Create, validate, and render Heroku app.json manifests
33 lines (32 loc) • 801 B
JSON
{
"name": "zapp",
"description": "A scrappy app for doing stuff with stuff.",
"keywords": ["appage", "scrappage", "zappage"],
"urls": {
"website": "https://zapp.github.io",
"source": "https://github.com/jane-user/zapp.git",
"success": "/getting-started"
},
"scripts": {
"postdeploy": "bundle exec rake bootstrap"
},
"env": {
"SITE_NAME": "Appy Scrappy",
"SESSION_SECRET": {
"description": "A crazy random thing to secure your cookies",
"generator": "secret"
},
"SPECIALNESS": {
"description": "How special, on a scale of 1 to 10?",
"default": 5
},
"WEB_CONCURRENCY": {
"description": "How many processes to run",
"default": 5
}
},
"addons": [
"openredis",
"mongolab:shared-single-small"
]
}