Added a profile, that starts the app with a PostgreSQL-DB
[demos/spring/data-jdbc] / 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 ---
12
13 spring:
14   profiles: prod
15   datasource:
16     url: jdbc:postgresql://postgres:5432/outbox
17     username: outbox
18     password: outbox
19   flyway:
20     locations: classpath:db/migration/postgres