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 767B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "tcp": {
  3. "listen": ":12345"
  4. },
  5. "http": {
  6. "listen": ":8045",
  7. "tls": false,
  8. "tls_key": "",
  9. "tls_cert": "",
  10. "listeners": {
  11. "generic": true,
  12. "grafana": "#channel",
  13. "github": {
  14. "secret": "my_secret",
  15. "default_channel": "#irccat-dev",
  16. "repositories": {
  17. "irccat": "#irccat-dev"
  18. }
  19. }
  20. }
  21. },
  22. "irc": {
  23. "server": "irc.example.com:6697",
  24. "tls": true,
  25. "tls_skip_verify": false,
  26. "nick": "irccat",
  27. "realname": "IRCCat",
  28. "identify_pass": "",
  29. "sasl_login": "",
  30. "sasl_pass": "",
  31. "channels": ["#channel"],
  32. "keys": {"#channel": "join_key"}
  33. },
  34. "commands": {
  35. "auth_channel": "#channel",
  36. "handler": "./examples/command_handler.py",
  37. "max_response_lines": 15
  38. }
  39. }