mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 22:24:23 +01:00
Configuration parameters are now load from a .conf file (see template.conf as an example). The code has 3 config levels: default (teos/__init__.py), config file (<data_dir>/teos.conf) and command line. Most of the config parameters are only modificable trough the config file for now. The priority order is: command line, config file, default. Objects that need config parameters are now built in teosd instead of inside other classes. Therefore teosd acts like a factory and config parameters don't have to be passed around between objects. This also implies that a lot of the object creation logic has been changed. This should simplify unit testing.
26 lines
990 B
Python
26 lines
990 B
Python
import os
|
|
from teos.utils.auth_proxy import AuthServiceProxy
|
|
|
|
HOST = "localhost"
|
|
PORT = 9814
|
|
DATA_DIR = os.path.expanduser("~/.teos/")
|
|
LOG_PREFIX = "teos"
|
|
|
|
# Default conf fields
|
|
DEFAULT_CONF = {
|
|
"BTC_RPC_USER": {"value": "user", "type": str},
|
|
"BTC_RPC_PASSWD": {"value": "passwd", "type": str},
|
|
"BTC_RPC_CONNECT": {"value": "127.0.0.1", "type": str},
|
|
"BTC_RPC_PORT": {"value": 8332, "type": int},
|
|
"BTC_NETWORK": {"value": "mainnet", "type": str},
|
|
"FEED_PROTOCOL": {"value": "tcp", "type": str},
|
|
"FEED_CONNECT": {"value": "127.0.0.1", "type": str},
|
|
"FEED_PORT": {"value": 28332, "type": int},
|
|
"MAX_APPOINTMENTS": {"value": 100, "type": int},
|
|
"EXPIRY_DELTA": {"value": 6, "type": int},
|
|
"MIN_TO_SELF_DELAY": {"value": 20, "type": int},
|
|
"LOG_FILE": {"value": "teos.log", "type": str, "path": True},
|
|
"TEOS_SECRET_KEY": {"value": "teos_sk.der", "type": str, "path": True},
|
|
"DB_PATH": {"value": "appointments", "type": str, "path": True},
|
|
}
|