-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json.example
More file actions
43 lines (42 loc) · 912 Bytes
/
Copy pathconfig.json.example
File metadata and controls
43 lines (42 loc) · 912 Bytes
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
{
"core": {
"nickname": "foo",
"realname": "bar",
"log_file": "/path/to/nanobot/nanobot.log",
"db": "/path/to/nanobot/database.sql"
},
"networks": [
{
"name": "network",
"hostname": "irc.network.net",
"channels": [
{
"name": "#yourbot-staging"
}
]
}
],
"plugins": [
{
"name": "example",
"module": "plugins.example_plugin",
"enabled": false,
"config": {
"greet_users": true,
"greeting": "Hello there!",
"keywords": ["hello", "hi"],
"response": "Hey! How can I help?"
}
},
{
"name": "eval",
"module": "plugins.eval_plugin",
"enabled": true
},
{
"name": "admin",
"module": "plugins.admin_plugin",
"enabled": true
}
]
}