diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/chromebot.ini | 10 | ||||
-rw-r--r-- | contrib/chromebot.json | 12 |
2 files changed, 12 insertions, 10 deletions
diff --git a/contrib/chromebot.ini b/contrib/chromebot.ini deleted file mode 100644 index a302356..0000000 --- a/contrib/chromebot.ini +++ /dev/null @@ -1,10 +0,0 @@ -[irc] -host = irc.example.com -port = 6667 -ssl = False -tempdir = /path/to/warc -destdir = /path/to/tmp -nick = chromebot -channel = #testchannel -process_limit = 1 - diff --git a/contrib/chromebot.json b/contrib/chromebot.json new file mode 100644 index 0000000..98a48f9 --- /dev/null +++ b/contrib/chromebot.json @@ -0,0 +1,12 @@ +{ + "irc": { + "host": "irc.example.com", + "port": 6667, + "ssl": false, + "nick": "chromebot", + "channels": ["#testchannel"] + }, + "tempdir": "/path/to/tmp", + "destdir": "/path/to/warc", + "process_limit": 1 +} |