-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.73 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": "Github Org Invite",
"description": "A simple Nuxt app to send automatic invites to GitHub Organizations (and teams)!",
"repository": "https://github.com/christyjacob4/github-org-invite",
"logo": "https://avatars.githubusercontent.com/u/20852629?v=4&s=400",
"keywords": ["github", "automation", "github organization", "team", "invite"],
"env": {
"GITHUB_ACCESS_TOKEN": {
"description": "[REQUIRED] A Github access token to activate the Octokit GitHub Client",
"value": "",
"required": true
},
"ORG_NAME": {
"description": "[REQUIRED] The organization to which you would like to invite users. Yon can confirm it by going to your org's dashboard : \"https://github.com/orgs/{ORG_NAME}/dashboard\"",
"value": "",
"required": true
},
"BASE_URL": {
"description": "[REQUIRED] The URL at which your web app is hosted. Eg: \"https://invite-to-org.herokuapp.com\"",
"value": "",
"required": true
},
"TEAM_NAME": {
"description": "[OPTIONAL] Set default team to join. You can confirm it by going to your team's page at \"https://github.com/orgs/{ORG_NAME}/teams/{TEAM_NAME}\"",
"value": "",
"required": false
},
"BACKGROUND_COLOR": {
"description": "[OPTIONAL] Background color for front page. Can be any hex color code. Default is #14274E",
"value": "",
"required": false
},
"ACCENT_COLOR": {
"description": "[OPTIONAL] Accent color for the Landing page. Can be any hex color code. Default is #394867",
"value": "",
"required": false
},
"FAVICON_URL": {
"description": "[OPTIONAL] URL to your org's favicon. Default is the Nuxt favicon",
"value": "",
"required": false
}
}
}