-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
30 lines (30 loc) · 1.03 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
{
"name": "Git-in-Team",
"description": "Let people invite themselves to your GitHub organization/team",
"logo": "https://raw.githubusercontent.com/RattleSN4K3/git-in-team/master/logo.png",
"repository": "https://github.com/RattleSN4K3/git-in-team",
"keywords": ["node", "github", "team", "organization"],
"env": {
"GITHUB_ORGANIZATION": {
"description": "Your GitHub's organization (github.com/orgs/**this**)",
"required": true
},
"GITHUB_API_TOKEN": {
"description": "A Github API token with access to the organization's adminstration",
"required": false
},
"GITHUB_API_TYPE": {
"description": "A Github API token type (which is generally 'Bearer')",
"required": false,
"value": "Bearer"
},
"GITHUB_APP_ID": {
"description": "Client id of the registered application",
"required": false
},
"GITHUB_APP_SECRET": {
"description": "Client secret of the registered application",
"required": false
}
}
}