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

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "server_pass": "",
  29. "identify_pass": "",
  30. "sasl_login": "",
  31. "sasl_pass": "",
  32. "channels": ["#channel"],
  33. "keys": {"#channel": "join_key"}
  34. },
  35. "commands": {
  36. "auth_channel": "#channel",
  37. "handler": "./examples/command_handler.py",
  38. "max_response_lines": 15
  39. }
  40. }