configure rabbitMQ ConnectionFactory

This commit is contained in:
2025-03-31 01:39:57 +02:00
parent e8fb80b646
commit 650e964e48
4 changed files with 40 additions and 0 deletions

View File

@@ -26,4 +26,18 @@ postgresql {
password = "changeit"
password = ${?POSTGRESQL_PASSWORD}
}
rabbitmq {
url = "localhost"
url = ${?RABBITMQ_URL}
port = "5672"
port = ${?RABBITMQ_PORT}
username = "event-demo"
username = ${?RABBITMQ_USERNAME}
password = "changeit"
password = ${?RABBITMQ_PASSWORD}
}