-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathapp.json
37 lines (37 loc) · 1.23 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
{
"name": "Slack Translator",
"description": "You can translate your chat using slack translator.",
"keywords": [
"small",
"sharp",
"tool",
"translator",
"slack"
],
"addons": [
"heroku-redis:hobby-dev"
],
"env": {
"TRANSLATE_ENGINE": {
"description": "Choose a translator vendor to use. Currently only support `google` and `naver`.",
"required": true,
"value": "google"
},
"GOOGLE_API_KEY": {
"description": "You can get the API Key from [Google Developers Console](https://console.developers.google.com/). Note that it's only needed when you choose `google` as your `TRANSLATE_ENGINE`.",
"required": true
},
"SLACK_API_TOKEN": {
"description": "You can get the API Token from [Slack Web API](https://api.slack.com/web)",
"required": true
},
"SLACK_WEBHOOK_URL": {
"description": "You can get the Incoming Webhook URL from [here](https://slack.com/services/new/incoming-webhook)",
"required": true
},
"ASYNC_TRANSLATION": {
"description": "If this option is YES, translation task will be processed asynchronously. Note that you need to use worker instance at least one for using this option.",
"value": "NO"
}
}
}