forked from MikeMcQuaid/strap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.38 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "Strap",
"description": "Bootstrap a minimal macOS development system",
"website": "https://github.com/MikeMcQuaid/strap",
"repository": "https://github.com/MikeMcQuaid/strap",
"keywords": [
"ruby",
"strap"
],
"success_url": "/",
"stack": "container",
"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 no URL).",
"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
},
"CUSTOM_HOMEBREW_TAP": {
"description": "an optional Homebrew tap to install with 'brew tap'.",
"required": false
},
"CUSTOM_BREW_COMMAND": {
"description": "a single 'brew' command that is run after all other stages have completed.",
"required": false
}
}
}