-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchannels.example.json
More file actions
45 lines (45 loc) · 1.21 KB
/
Copy pathchannels.example.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
{
"_README": "Copy this to ~/.lisa/channels.json and fill in the credentials. ${ENV_VAR} placeholders are expanded from process.env (so secrets can stay in ~/.lisa/config.env).",
"channels": {
"telegram": {
"enabled": true,
"token": "${TELEGRAM_BOT_TOKEN}",
"allowedChatIds": [],
"allowedUsernames": ["your_telegram_username"]
},
"discord": {
"enabled": false,
"token": "${DISCORD_BOT_TOKEN}",
"allowedGuildIds": [],
"allowedChannelIds": [],
"allowDms": true
},
"slack": {
"enabled": false,
"botToken": "${SLACK_BOT_TOKEN}",
"signingSecret": "${SLACK_SIGNING_SECRET}",
"port": 5810,
"allowedChannelIds": [],
"allowedUserIds": []
},
"webhook": {
"enabled": false,
"port": 5800,
"token": "${WEBHOOK_SHARED_SECRET}",
"replyUrl": ""
},
"imessage": {
"enabled": false,
"intervalMs": 5000
},
"feishu": {
"enabled": false,
"appId": "${FEISHU_APP_ID}",
"appSecret": "${FEISHU_APP_SECRET}",
"encryptKey": "${FEISHU_ENCRYPT_KEY}",
"verificationToken": "${FEISHU_VERIFICATION_TOKEN}",
"port": 5820,
"allowedUserIds": []
}
}
}