mirror of
				https://github.com/jlu5/PyLink.git
				synced 2025-11-04 08:57:25 +01:00 
			
		
		
		
	Closes #26. Plugins can implement their own fantasy-style triggers via message hooks, so I'm not sure this really needs a place in the core.
		
			
				
	
	
		
			33 lines
		
	
	
		
			950 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			950 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
bot:
 | 
						|
    # Set nick, user/ident, and real name.
 | 
						|
    nick: pylink
 | 
						|
    user: pylink
 | 
						|
    realname: PyLink Service Client
 | 
						|
    # Console log verbosity: see https://docs.python.org/3/library/logging.html#logging-levels
 | 
						|
    loglevel: DEBUG
 | 
						|
 | 
						|
login:
 | 
						|
    # PyLink administrative login - Change this, or the service will not start!
 | 
						|
    user: admin
 | 
						|
    password: changeme
 | 
						|
 | 
						|
server:
 | 
						|
    # Server name, port, and passwords
 | 
						|
    netname: whatever
 | 
						|
    ip: 127.0.0.1
 | 
						|
    port: 7000
 | 
						|
    recvpass: "abcd"
 | 
						|
    sendpass: "abcd"
 | 
						|
    # Hostname we will use to connect to the remote server
 | 
						|
    hostname: "pylink.yournet"
 | 
						|
    # SID - required for InspIRCd and TS6 based servers. This must be three characters long.
 | 
						|
    # The first char must be a digit [0-9], and the remaining two chars may be letters [A-Z] or digits.
 | 
						|
    sid: "0AL"
 | 
						|
    # Autojoin channels
 | 
						|
    channels: ["#pylink"]
 | 
						|
    protocol: "inspircd"
 | 
						|
 | 
						|
# Plugins to load (omit the .py extension)
 | 
						|
plugins:
 | 
						|
    - commands
 |