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

1234567891011121314151617181920212223242526272829303132333435
  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. "github": {
  13. "secret": "test",
  14. "repositories": {
  15. "irccat": "#irccat-dev"
  16. }
  17. }
  18. }
  19. },
  20. "irc": {
  21. "server": "irc.example.com:6697",
  22. "tls": true,
  23. "tls_skip_verify": false,
  24. "nick": "irccat",
  25. "realname": "IRCCat",
  26. "identify_pass": "",
  27. "channels": ["#channel"],
  28. "keys": {"#channel": "join_key"}
  29. },
  30. "commands": {
  31. "auth_channel": "#channel",
  32. "handler": "./examples/command_handler.py",
  33. "max_response_lines": 15
  34. }
  35. }