janet/README.md

22 lines
269 B
Markdown

# Janet
A NodeJS-based IRC bot
## Config
Configuration is stored in `config.json`. Example configuration file:
```
{
"irc": {
"server": "localhost",
"port": 6667,
"user": "Janet",
"channels": [
"#channel1",
"#channel2"
]
}
}
```