blob: 2068c13827fdd0b9658b474aebaac7e36274e166 [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',
Scott Bakeraa084c82017-06-21 09:42:50 -070011 'kind': 'grpcapi',
Matteo Scandolo1879ce72017-05-30 15:45:26 -070012 },
13 'keep_temp_files': False,
14 'enable_watchers': False,
15 'dependency_graph': '/opt/xos/model-deps',
16 'error_map_path': '/opt/xos/error_map.txt',
17 'feefie': {
18 'client_user': 'pl'
19 },
20 'proxy_ssh': {
21 'enabled': True,
22 'key': '/opt/cord_profile/node_key',
23 'user': 'root'
24 },
25 'node_key': '/opt/cord_profile/node_key',
26 'config_dir': '/etc/xos/sync',
27 'backoff_disabled': True
Scott Bakeraa084c82017-06-21 09:42:50 -070028}