-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.yml
44 lines (38 loc) · 896 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
mongo:
url: 'mongodb://localhost:27017'
db: 'biomaj_user'
ldap:
host: null
port: 389
dn: null
consul:
host: null
# Unique agent identifier name among biomaj downloaders
id: 'biomaj_user_agent'
web:
debug: true
port: 5070
local_endpoint: 'http://127.0.0.1:5070'
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