X-Git-Url: https://juplo.de/gitweb/?p=demos%2Fkafka%2Foutbox;a=blobdiff_plain;f=outbox%2Fsrc%2Fmain%2Fresources%2Fapplication.yml;fp=outbox%2Fsrc%2Fmain%2Fresources%2Fapplication.yml;h=0000000000000000000000000000000000000000;hp=2a8502a1414eb0997a07ff40ad62f76df7fb39ad;hb=fbd0ca0df5004d13a5e93cdb8373bafc60440c8b;hpb=bdc7b089e14ddc16f7e76f6a736b27b608e35ab4 diff --git a/outbox/src/main/resources/application.yml b/outbox/src/main/resources/application.yml deleted file mode 100644 index 2a8502a..0000000 --- a/outbox/src/main/resources/application.yml +++ /dev/null @@ -1,53 +0,0 @@ -management: - endpoints: - web: - exposure: - include: "*" - -spring: - flyway: - locations: classpath:db/migration/h2 - -logging: - level: - de: - juplo: - kafka: - outbox: DEBUG - ---- - -spring: - profiles: prod - - datasource: - url: jdbc:postgresql://postgres:5432/outbox - username: outbox - password: outbox - flyway: - locations: classpath:db/migration/postgres - -de: - juplo: - kafka: - outbox: - bootstrap-servers: kafka:9093 - ---- - -spring: - profiles: dev - - datasource: - url: jdbc:postgresql://localhost:5432/outbox - username: outbox - password: outbox - flyway: - locations: classpath:db/migration/postgres - -de: - juplo: - kafka: - outbox: - bootstrap-servers: localhost:9092 -