forked from looker/lookerbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 2.37 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
52
53
54
55
56
{
"name": "Lookerbot for Slack",
"description": "A Slack bot for Looker, to make sharing data easier!",
"repository": "https://github.com/looker/looker-slackbot",
"keywords": ["looker", "bi", "analytics", "slack", "chat", "data"],
"logo": "https://cdn.rawgit.com/looker/looker-slackbot/master/looker-bot-icon-512.png",
"env": {
"SLACK_API_KEY": {
"description": "A Slack API token (find it on https://api.slack.com/web)",
"required": true
},
"LOOKER_URL": {
"description": "The web url of your Looker instance.",
"required": true,
"value": "https://mycompany.looker.com"
},
"LOOKER_API_BASE_URL": {
"description": "The API 3.0 endpoint of your Looker instance.",
"required": true,
"value": "https://mycompany.looker.com:19999/api/3.0"
},
"LOOKER_API_3_CLIENT_ID": {
"description": "The API 3.0 client ID for the user you want the bot to run as.",
"required": true
},
"LOOKER_API_3_CLIENT_SECRET": {
"description": "The API 3.0 client secret for the user you want the bot to run as.",
"required": true
},
"LOOKER_CUSTOM_COMMAND_SPACE_ID": {
"description": "The ID of a Space that you would like the bot to use to define custom commands.",
"required": false
},
"SLACKBOT_S3_BUCKET": {
"description": "If you want to use the Slack bot to post visualization images, provide an Amazon S3 bucket name.",
"required": false
},
"SLACKBOT_S3_BUCKET_REGION": {
"description": "If you want to use the Slack bot to post visualization images, provide an Amazon S3 bucket region.",
"required": false,
"value": "us-east-1"
},
"AWS_ACCESS_KEY_ID": {
"description": "If you want to use the Slack bot to post visualization images, provide an Amazon S3 access key that can write to the provided bucket.",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "If you want to use the Slack bot to post visualization images, provide an Amazon S3 secret access key that can write to the provided bucket.",
"required": false
},
"SLACK_SLASH_COMMAND_TOKEN": {
"description": "If you want to use slash commands with the Slack bot, provide the verification token from the slash command setup page so that the bot can verify the integrity of incoming slash commands.",
"required": false
}
}
}