forked from spoqa/slack-translator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
28 lines (28 loc) · 827 Bytes
/
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
{
"name": "Andaluh Slack Translator",
"description": "You can translate your chat using slack translator.",
"keywords": [
"small",
"sharp",
"tool",
"translator",
"slack"
],
"addons": [
"heroku-redis:hobby-dev"
],
"env": {
"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"
}
}
}