Added Google Guava for byte-conversions
[demos/kafka/outbox] / outbox / src / main / resources / application.yml
1 management:
2   endpoints:
3     web:
4       exposure:
5         include: "*"
6
7 spring:
8   flyway:
9     locations: classpath:db/migration/h2
10
11 logging:
12   level:
13     de:
14       juplo:
15         kafka:
16           outbox: DEBUG
17
18 ---
19
20 spring:
21   profiles: prod
22
23   datasource:
24     url: jdbc:postgresql://postgres:5432/outbox
25     username: outbox
26     password: outbox
27   flyway:
28     locations: classpath:db/migration/postgres
29
30 de:
31   juplo:
32     kafka:
33       outbox:
34         bootstrap-servers: kafka:9093
35
36 ---
37
38 spring:
39   profiles: dev
40
41   datasource:
42     url: jdbc:postgresql://localhost:5432/outbox
43     username: outbox
44     password: outbox
45   flyway:
46     locations: classpath:db/migration/postgres
47
48 de:
49   juplo:
50     kafka:
51       outbox:
52         bootstrap-servers: localhost:9092
53