archive

- Random tools & helpful resources for IRC
git clone git://git.acid.vegas/archive.git
Log | Files | Refs | Archive

config.py (382B)

      1 #!/usr/bin/env python
      2 # IRC Services (IRCS) - Developed by acidvegas in Python (https://acid.vegas/ircs)
      3 # config.py
      4 
      5 # Connection
      6 server   = 'localhost'
      7 port     = 6667
      8 use_ipv6 = False
      9 use_ssl  = False
     10 vhost    = None
     11 password = None
     12 
     13 # Identity
     14 nickname    = 'IRCS'
     15 username    = 'ircs'
     16 realname    = 'IRC Services Bot'
     17 
     18 # Admin
     19 admin_host  = 'CHANGEME'
     20 oper_passwd = 'CHANGEME'