mirror of
https://github.com/solero/houdini.git
synced 2024-11-22 21:47:20 +00:00
Create config.sample.py
This commit is contained in:
parent
fdeb0feed4
commit
3c6b412425
55
config.sample.py
Normal file
55
config.sample.py
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
from houdini import ConflictResolution
|
||||||
|
from houdini import Language
|
||||||
|
|
||||||
|
database = {
|
||||||
|
'Address': 'localhost',
|
||||||
|
'Username': 'postgres',
|
||||||
|
'Password': 'password',
|
||||||
|
'Name': 'houdini',
|
||||||
|
}
|
||||||
|
|
||||||
|
redis = {
|
||||||
|
'Address': '127.0.0.1',
|
||||||
|
'Port': 6379
|
||||||
|
}
|
||||||
|
|
||||||
|
commands = {
|
||||||
|
'Prefix': ['!', '?', '.'],
|
||||||
|
'StringDelimiters': ['"', "'"],
|
||||||
|
'ConflictMode': ConflictResolution.Silent
|
||||||
|
}
|
||||||
|
|
||||||
|
servers = {
|
||||||
|
'Login': {
|
||||||
|
'Address': '0.0.0.0',
|
||||||
|
'Port': 6112,
|
||||||
|
'World': False,
|
||||||
|
'Plugins': [
|
||||||
|
'Example'
|
||||||
|
],
|
||||||
|
'Logging': {
|
||||||
|
'General': 'logs/login.log',
|
||||||
|
'Errors': 'logs/login-errors.log',
|
||||||
|
'Level': 'DEBUG'
|
||||||
|
},
|
||||||
|
'LoginFailureLimit': 5,
|
||||||
|
'LoginFailureTimer': 3600,
|
||||||
|
'KeyTTL': 3000
|
||||||
|
},
|
||||||
|
'Blizzard': {
|
||||||
|
'Id': '100',
|
||||||
|
'Address': '0.0.0.0',
|
||||||
|
'Port': 9875,
|
||||||
|
'Language': Language.En,
|
||||||
|
'World': True,
|
||||||
|
'Capacity': 200,
|
||||||
|
'CacheExpiry': 3600,
|
||||||
|
'Plugins': [
|
||||||
|
],
|
||||||
|
'Logging': {
|
||||||
|
'General': 'logs/blizzard.log',
|
||||||
|
'Errors': 'logs/blizzard-errors.log',
|
||||||
|
'Level': 'INFO'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user