abridged/example-config.toml

36 lines
699 B
TOML
Raw Normal View History

2023-05-24 04:23:36 +00:00
#=-- example irc node --=#
[nodes.aaaa]
2023-05-24 04:23:36 +00:00
platform = "irc"
[nodes.aaaa.config]
2023-05-24 04:23:36 +00:00
server = "example.com"
port = 6667
nick = "example"
alt_nicks = []
tls = true
[nodes.aaaa.links]
2023-05-24 04:23:36 +00:00
"#example" = "example-link"
#=-- example matrix node --=#
[nodes.bbbb]
2023-05-24 04:23:36 +00:00
platform = "matrix"
[nodes.bbbb.config]
2023-05-24 04:23:36 +00:00
user = "@example:example.com"
password = "hunter2"
[nodes.bbbb.links]
2023-05-24 04:23:36 +00:00
"!abcdefghijklmnopqr:example.com" = "example-link"
#=-- example discord node --=#
[nodes.cccc]
2023-05-24 04:23:36 +00:00
platform = "discord"
[nodes.cccc.config]
token = "ABCDEFGHIJKLMNOPQRSTUVWXYZ.ABCDEF.0123456789abcdefghijklmnopqrstuvwxyzab"
2023-05-25 21:38:17 +00:00
webhooks = { "123456789012345678" = "9123456789123456789" }
2023-05-24 04:23:36 +00:00
[nodes.cccc.links]
2023-05-24 04:23:36 +00:00
"123456789012345678" = "example-link"