-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.sample.json
53 lines (53 loc) · 1.31 KB
/
config.sample.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
{
"botinfo": {
"botEmail": "[email protected]",
"certificatePath": "./certificates",
"certificateFilePath": "bot.crt.pem",
"certificateKeyfilePath": "bot.key.pem",
"certificatePassword": "b0tP4sswGd"
},
"symphonyinfo": {
"pod_hostname": "",
"sessionTokenHost": "",
"sessionTokenPort": "8444",
"sessionEndpoint": "${host}:${port}/sessionauth/v1/authenticate",
"keyManagerHost": "",
"keyManagerPort": "8444",
"keyManagerEndpoint": "${host}:${port}/keyauth/v1/authenticate",
"apiHost": "",
"apiPort": "443"
},
"symphonyEndpoints": {
"createIM": "${host}:${port}/pod/v1/im/create",
"sendMessage": "${host}:${port}/agent/${ver}/stream/${streamId}/message/create"
},
"zendeskinfo": {
"zdesk_url": ""
},
"redis": {
"active": true,
"host": "127.0.0.1",
"port": 6379,
"password": "redispwd"
},
"loggingPath": "./logging",
"logToFile": true,
"defaultCommandSettings": [
{
"name": "alphavantage",
"apikey": "apikey"
},
{
"name": "giphy",
"apikey": "apikey"
}
],
"pluginPath": "./modules/plugins",
"blacklist": [
],
"defaultCommandDefinitionPath": "./modules/command/default.json",
"BotStreamForPing": ""
}