forked from seratch/deepl-for-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.22 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
{
"name": "DeepL API App for Slack",
"description": "Slack app for DeepL Translate API users",
"repository": "https://github.com/seratch/deepl-for-slack",
"keywords": [
"Slack",
"Slack API",
"DeepL Pro",
"DeepL API",
"Heroku"
],
"env": {
"SLACK_SIGNING_SECRET": {
"description": "Slack Signing Secret",
"value": "***"
},
"SLACK_BOT_TOKEN": {
"description": "Slack App Bot Token",
"value": "xoxb-**"
},
"DEEPL_AUTH_KEY": {
"description": "DeepL API Auth Key (https://www.deepl.com/pro-account.html)",
"value": "***"
},
"DEEPL_FREE_API_PLAN": {
"description": "Set to 1 If you use the Free API plan (0: Pro, 1: Free)",
"value": "0"
},
"DEEPL_RUNNER_LANGUAGES": {
"description": "Enabled target languages in modals (https://www.deepl.com/docs-api/translating-text/request/)",
"value": "en,ja,zh,de,fr,it,es,nl,pl,pt,ru"
},
"SLACK_LOG_LEVEL": {
"description": "Bolt App Log Level (debug/info/warn/error)",
"value": "info"
},
"SLACK_REQUEST_LOG_ENABLED": {
"description": "Slack App Request Log Feature (0: disabled, 1: enabled)",
"value": "0"
}
},
"image": "heroku/nodejs"
}