forked from guardian/gu-who
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
23 lines (23 loc) · 1022 Bytes
/
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
{
"name": "gu:who",
"description": "An audit bot for the membership of your GitHub Organisation",
"repository": "https://github.com/guardian/gu-who",
"logo": "https://cloud.githubusercontent.com/assets/52038/6084/94fb8e46-c0ea-11e3-90f8-708387e95b4d.png",
"success_url": "/",
"keywords": ["github", "audit", "organisation", "membership"],
"env": {
"GITHUB_APP_CLIENT_ID": {
"description": "If you want to use the convenient 'Log In via GitHub` method to authenticate via OAuth V2, you'll need to register your instance of gu:who as an application in your GitHub settings.",
"required": false
},
"GITHUB_APP_CLIENT_SECRET": {
"description": "The Client Secret credentials for GitHub OAuth V2.",
"required": false
},
"APPLICATION_SECRET": {
"generator": "secret",
"description": "Random text to use as a crypto seed for signing session cookies. See https://www.playframework.com/documentation/2.4.x/ApplicationSecret",
"required": true
}
}
}