blob: f5cd761da7f47f08845913e4a109c70bd90e85b7 [file] [log] [blame]
Matteo Scandolo56879722017-05-17 21:39:54 -07001DEFAULT_VALUES = {
Matteo Scandolo6bc017c2017-05-25 18:37:42 -07002 'xos_dir': '/opt/xos',
Matteo Scandolo56879722017-05-17 21:39:54 -07003 'logging': {
Matteo Scandolo1879ce72017-05-30 15:45:26 -07004 'file': '/var/log/xos.log', # TODO remove me, the new logger will be able to decide on which file to log
Matteo Scandolo56879722017-05-17 21:39:54 -07005 'level': 'info',
Matteo Scandolo202ae182017-06-01 15:28:08 -07006 'channels': ['file', 'console'],
7 'logstash_hostport': 'cordloghost:5617'
Matteo Scandolo1879ce72017-05-30 15:45:26 -07008 },
9 'accessor': {
10 'endpoint': 'xos-core.cord.lab:50051',
11 },
12 'keep_temp_files': False,
13 'enable_watchers': False,
14 'dependency_graph': '/opt/xos/model-deps',
15 'error_map_path': '/opt/xos/error_map.txt',
16 'feefie': {
17 'client_user': 'pl'
18 },
19 'proxy_ssh': {
20 'enabled': True,
21 'key': '/opt/cord_profile/node_key',
22 'user': 'root'
23 },
24 'node_key': '/opt/cord_profile/node_key',
25 'config_dir': '/etc/xos/sync',
26 'backoff_disabled': True
Matteo Scandolo56879722017-05-17 21:39:54 -070027}