-
Notifications
You must be signed in to change notification settings - Fork 7
/
config.yml
51 lines (43 loc) · 994 Bytes
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
redis:
host: '127.0.0.1'
#host: '131.254.17.40'
port: 6379
db: 0
prefix: 'biomaj'
rabbitmq:
host: '127.0.0.1'
port: 5672
user: null
password: null
virtual_host: '/'
consul:
host: null
# Unique agent identifier name among biomaj downloaders
id: 'biomaj_download_agent'
web:
debug: true
port: 5003
local_endpoint: 'http://localhost:5003'
tls:
key: null
cert: null
log_config:
'version': 1
'formatters':
'generic':
'format': '%(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s'
'handlers':
'console':
'class': 'logging.StreamHandler'
'formatter': 'generic'
'level': 'DEBUG'
'loggers':
'root':
'level': 'DEBUG'
'handlers':
- 'console'
'biomaj':
'level': 'DEBUG'
'handlers':
- 'console'
'disable_existing_loggers': False