-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
51 lines (51 loc) · 2.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "Snlack To-Go",
"description": "A self-hosted instance of Snlack, the unofficial Snyk app for Slack!",
"repository": "https://github.com/carwin/snlack",
"logo": "https://user-images.githubusercontent.com/715967/191147173-5ca4b1b6-a07e-4873-866b-2d4fbb3b15dd.png",
"keywords": ["snyk", "slack", "app"],
"success_url": "/slack/install",
"env": {
"SLACK_BOT_TOKEN": {
"description": "Bot token from Slack.",
"required": true
},
"SLACK_CLIENT_ID": {
"description": "Your Slack app's Client ID.",
"required": true
},
"SLACK_CLIENT_SECRET": {
"description": "Your Slack app's Client Secret.",
"required": true
},
"SLACK_OAUTH_REDIRECT_URI": {
"description": "The remote URL to which users will be redirected after going through Slack's OAuth app install process. It needs to end with `/slack/oauth_redirect`.",
"required": true
},
"SLACK_SIGNING_SECRET": {
"description": "Signing Secret provided by Slack in your App's config settings",
"required": true
},
"SNYK_CLIENT_ID": {
"description": "The Client ID provided by Snyk during the Snyk Apps registration process.",
"required": true
},
"SNYK_CLIENT_SECRET": {
"description": "The Client Secret provided by Snyk during the Snyk Apps registration process.",
"required": true
},
"SNYK_ENCRYPTION_SECRET": {
"description": "A very secret value used to encrtyp locally stored data.",
"required": true
},
"SNYK_REDIRECT_URI": {
"description": "This value should match the one which was passed to Snyk during the Snyk Apps registration process.",
"required": true
},
"SNYK_SCOPES": {
"description": "The list of scopes the application requires users to provide for it to function.",
"required": true,
"value": "org.read,org.project.read"
}
}
}