forked from ozonmp/omp-template-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
50 lines (43 loc) · 783 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
project:
name: Ozon Code Platform Template API
debug: true
environment: development
grpc:
host: 0.0.0.0
port: 8082
maxConnectionIdle: 5 # Minutes
timeout: 15 # Seconds
maxConnectionAge: 5 # Minutes
rest:
host: 0.0.0.0
port: 8080
metrics:
host: 0.0.0.0
port: 9100
path: /metrics
jaeger:
service: "omp-template-api"
host: "jaeger"
port: ":6831"
status:
host: 0.0.0.0
port: 8000
livenessPath: /live
readinessPath: /ready
versionPath: /version
database:
host: postgres
port: 5432
user: docker
password: docker
name: omp_template_api
sslmode: disable
migrations: migrations
driver: pgx
kafka:
capacity: 512
topic: "omp-template-events"
groupId: "omp-template-api"
brokers:
- "kafka:9092"
- "localhost:9094"