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

12345678910111213141516171819202122232425262728293031323334353637
  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. "channels": ["#channel"],
  30. "keys": {"#channel": "join_key"}
  31. },
  32. "commands": {
  33. "auth_channel": "#channel",
  34. "handler": "./examples/command_handler.py",
  35. "max_response_lines": 15
  36. }
  37. }