octobox/app.json

45 строки
1.1 KiB
JSON
Исходник Обычный вид История

{
2016-12-18 23:34:05 +03:00
"name": "Octobox",
2018-08-28 16:59:02 +03:00
"description": "Untangle your GitHub Notifications",
2016-12-23 15:15:16 +03:00
"repository": "https://github.com/octobox/octobox",
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
},
"keywords": [
"github",
"notifications",
"productivity",
"rails",
"ruby"
],
"website": "https://octobox.io/",
"license": "AGPL-3.0-only",
"env": {
"OCTOBOX_ATTRIBUTE_ENCRYPTION_KEY": {
"description": "32 byte encryption key for access tokens in octobox",
"required": true
},
2016-12-18 07:38:39 +03:00
"GITHUB_CLIENT_ID": {
"description": "The GitHub Application Client ID",
"required": true
2016-12-18 18:05:54 +03:00
},
2016-12-18 07:38:39 +03:00
"GITHUB_CLIENT_SECRET": {
"description": "The GitHub Application Client Secret",
"required": true
},
"MINIMUM_REFRESH_INTERVAL": {
"description": "Minimum value allowed for a user to set auto-refresh. Setting to 0 means this is disabled.",
"value": "10"
2017-01-19 16:09:21 +03:00
},
2017-01-18 17:40:56 +03:00
"WEB_CONCURRENCY": {
"description": "Specifies the number of `workers` to boot in clustered mode.",
"value": "2"
}
},
"addons": [
2016-12-22 23:41:15 +03:00
"heroku-postgresql",
"heroku-redis",
"scheduler"
]
}