You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

irccat.json 563B

1234567891011121314151617181920212223242526272829
  1. {
  2. "tcp": {
  3. "listen": ":12345"
  4. },
  5. "http": {
  6. "listen": ":8045",
  7. "tls": false,
  8. "tls_key": "",
  9. "tls_cert": "",
  10. "listeners": {
  11. "grafana": "#channel"
  12. }
  13. },
  14. "irc": {
  15. "server": "irc.example.com:6697",
  16. "tls": true,
  17. "tls_skip_verify": false,
  18. "nick": "irccat",
  19. "realname": "IRCCat",
  20. "identify_pass": "",
  21. "channels": ["#channel"],
  22. "keys": {"#channel": "join_key"}
  23. },
  24. "commands": {
  25. "auth_channel": "#channel",
  26. "handler": "./examples/command_handler.py",
  27. "max_response_lines": 15
  28. }
  29. }