meetbot_cfg.py 298 B

1234567891011121314151617181920
  1. config = {
  2. # IRC server host
  3. "host": "127.0.0.1",
  4. # IRC server port
  5. "port": 6667,
  6. # IRC nickname
  7. "nick": "meetbot",
  8. # Channels to join
  9. "channels": [
  10. {
  11. "name": "#dev",
  12. },
  13. {
  14. "name": "#philosophy",
  15. },
  16. ],
  17. }