generated from public/aoc_template
30 lines
886 B
JSON
30 lines
886 B
JSON
// As JSON does not allow comments, remove all lines starting with // before starting the bot
|
|
{
|
|
"IRC": {
|
|
// IRC Server to connect to
|
|
"server": "irc.server.com",
|
|
"port": 6667,
|
|
|
|
// Channel to join
|
|
"channel": "#mycoolaocchannel",
|
|
|
|
// The Bots IRC identity
|
|
"nick": "AoCBot",
|
|
"user": "aucbot",
|
|
"name": "Advent of Code Leaderboard Announcer"
|
|
},
|
|
"AOC": {
|
|
// The content of your aoc session cookie should be stored in this file
|
|
"session_file": ".session",
|
|
|
|
// Where to save cache data
|
|
"cache_file": "aocbot.cache.json",
|
|
|
|
// AOC Leaderboard ID (at the end of the URL if you view your leaderboard)
|
|
"group_id": 123456,
|
|
|
|
// Eric wants to know who's querying his API. At least insert some contact data here if he wants to talk to you
|
|
"user_agent": "My owner did not configure me. Don't hesitate to block me if needed!"
|
|
}
|
|
}
|