forked from MikeMcQuaid/strap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
32 lines (32 loc) · 1.09 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "Strap",
"description": "Bootstrap a minimal OS X development system",
"website": "https://github.com/mikemcquaid/strap",
"repository": "https://github.com/mikemcquaid/strap",
"keywords": ["ruby", "strap"],
"success_url": "/",
"env": {
"GITHUB_KEY": {
"description": "The GitHub.com Application Client ID."
},
"GITHUB_SECRET": {
"description": "The GitHub.com Application Client Secret."
},
"SESSION_SECRET": {
"description": "The secret used for cookie session storage.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of Unicorn (web server) processes to run (defaults to 3).",
"required": false
},
"STRAP_ISSUES_URL": {
"description": "The URL where users should file issues (defaults to https://github.com/mikemcquaid/strap/issues/new).",
"required": false
},
"STRAP_BEFORE_INSTALL": {
"description": "Instructions displayed in the web application for users to follow before installing Strap (will be wrapped in `<li>` tags)..",
"required": false
}
}
}