-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Comment out example configuration file
- Loading branch information
Showing
1 changed file
with
33 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,47 @@ | ||
# autoload is a list of all the modules you want to have loaded at start | ||
autoload: | ||
- tetra/main | ||
- chatbot/eval | ||
- tetra/load | ||
- tetra/unload | ||
- tetra/version | ||
- tetra/scripts | ||
- tetra/joins | ||
- tetra/die | ||
- chatbot/eval | ||
|
||
# A list of the services you want Tetra to seed on the network, please do not | ||
# stray outside the folder list in `modules` | ||
services: | ||
- nick: Tetra | ||
user: tetra | ||
host: yolo-swag.com | ||
gecos: Tetra administrative client | ||
name: tetra | ||
- nick: Chatbot | ||
user: bot | ||
host: yolo-swag.com | ||
gecos: Chitty chatter bot! | ||
name: chatbot | ||
- nick: Tetra | ||
user: tetra | ||
host: yolo-swag.com | ||
gecos: Tetra administrative client | ||
name: tetra | ||
- nick: Chatbot | ||
user: bot | ||
host: yolo-swag.com | ||
gecos: Chitty chatter bot! | ||
name: chatbot | ||
|
||
# Information we should send to the TS6 network | ||
server: | ||
name: tetra.int | ||
gecos: Tetra in Go! | ||
sid: "420" | ||
gecos: (H) Tetra in Go! | ||
sid: "420" # Needs to be a string | ||
staffchan: '#opers' | ||
snoopchan: '#services' | ||
|
||
# The server Tetra will connect to | ||
uplink: | ||
host: 127.0.0.1 | ||
port: "6667" | ||
password: shameless | ||
ssl: false | ||
ssl: false #SSL not currently supported | ||
|
||
# InfluxDB credentials. To disable stats collection, set the host to "NOCOLLECTION" | ||
stats: | ||
host: 127.0.0.1:8086 | ||
host: NOCOLLECTION | ||
database: Localnet_devel | ||
username: tetra | ||
password: foobar | ||
|
||
# vim: set ts=2 sw=2 tw=0 et filetype=yaml |