Moved postage of messages into a reusable standalone implementation
[demos/kafka/outbox] / outbox / src / main / resources / application.yml
diff --git a/outbox/src/main/resources/application.yml b/outbox/src/main/resources/application.yml
deleted file mode 100644 (file)
index 2a8502a..0000000
+++ /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
-