lightweight build unify database record to nsrs
[osm/RO.git] / lcm / osm_lcm / lcm.cfg
1
2 # TODO currently is a pure yaml format. Transform it to [ini] style with yaml inside to be coherent with other modules
3
4 #[global]
5 global:
6     log_file:   ""
7     log_level:  DEBUG
8
9 #[RO]
10 RO:
11     #host:   ro          # hostname or IP
12     host:   localhost
13     port:   9090
14     tenant: osm
15
16 #[VCA]
17 VCA:
18     host:   vca
19     port:   17070
20     user:   admin
21     secret:   secret
22
23 #[database]
24 database:
25     driver: mongo       # mongo or memory
26     host:   mongo       # hostname or IP
27     port:   27017
28     name:   osm
29     user:   user
30     password:   password
31
32 #[storage]
33 storage:
34     driver: local       # local filesystem
35     # for local provide file path
36     path:   /app/storage
37
38 #[message]
39 message:
40     driver: local       # local or kafka
41     # for local provide file path
42     path:   /app/storage/kafka
43     # for kafka provide host and port
44     host:   kafka
45     port:   9092