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 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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": {
  12. "secret": "",
  13. "strict": false
  14. },
  15. "grafana": "#channel",
  16. "github": {
  17. "secret": "my_secret",
  18. "default_channel": "#irccat-dev",
  19. "repositories": {
  20. "irccat": "#irccat-dev"
  21. }
  22. }
  23. },
  24. "health_endpoint": "/healthz"
  25. },
  26. "irc": {
  27. "server": "irc.example.com:6697",
  28. "tls": true,
  29. "tls_skip_verify": false,
  30. "tls_client_cert": "",
  31. "tls_client_key": "",
  32. "nick": "irccat",
  33. "realname": "IRCCat",
  34. "server_pass": "",
  35. "identify_pass": "",
  36. "sasl_external": false,
  37. "sasl_login": "",
  38. "sasl_pass": "",
  39. "channels": ["#channel"],
  40. "keys": {"#channel": "join_key"},
  41. "health_file": "./health.timestamp",
  42. "health_period": "5m"
  43. },
  44. "commands": {
  45. "auth_channel": "#channel",
  46. "handler": "./examples/command_handler.py",
  47. "max_response_lines": 15
  48. }
  49. }