21 lines
415 B
Python
21 lines
415 B
Python
|
PORT = 8069
|
||
|
|
||
|
SERVICES = {
|
||
|
'elixire': {
|
||
|
'description': "elixi.re's backend",
|
||
|
'adapter': 'elixire',
|
||
|
'adapter_args': {
|
||
|
'base_url': 'https://elixi.re'
|
||
|
},
|
||
|
'poll': 10
|
||
|
},
|
||
|
'dabian': {
|
||
|
'description': 'elixi.re main server',
|
||
|
'adapter': 'ping',
|
||
|
'adapter_args': {
|
||
|
'address': '192.168.1.1'
|
||
|
},
|
||
|
'poll': 15
|
||
|
}
|
||
|
}
|