-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.yml
53 lines (45 loc) · 1.08 KB
/
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
52
53
redis:
host: '127.0.0.1'
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_process_agent'
web:
debug: true
port: 5000
local_endpoint: 'http://127.0.0.1:5000'
docker:
# URL to connect to docker, use null if direct docker access, else put IP of the host (not localhost)
url: 'tcp://127.0.0.1:2375'
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': 'INFO'
'handlers':
- 'console'
'biomaj':
'level': 'DEBUG'
'handlers':
- 'console'
'disable_existing_loggers': False