2026-01-09 18:35:06 +01:00
|
|
|
spring:
|
|
|
|
|
application:
|
|
|
|
|
name: mosenioring-backend
|
|
|
|
|
datasource:
|
|
|
|
|
url: jdbc:postgresql://localhost:5432/mosenioring
|
|
|
|
|
username: mosenioring
|
|
|
|
|
password: mosenioring
|
|
|
|
|
jpa:
|
|
|
|
|
open-in-view: false
|
|
|
|
|
hibernate:
|
|
|
|
|
ddl-auto: validate
|
|
|
|
|
properties:
|
|
|
|
|
hibernate:
|
|
|
|
|
jdbc:
|
|
|
|
|
time_zone: UTC
|
|
|
|
|
flyway:
|
|
|
|
|
enabled: true
|
|
|
|
|
rabbitmq:
|
|
|
|
|
host: localhost
|
|
|
|
|
port: 5672
|
|
|
|
|
username: guest
|
|
|
|
|
password: guest
|
|
|
|
|
data:
|
|
|
|
|
redis:
|
|
|
|
|
host: localhost
|
|
|
|
|
port: 6379
|
|
|
|
|
security:
|
|
|
|
|
oauth2:
|
|
|
|
|
resourceserver:
|
|
|
|
|
jwt:
|
|
|
|
|
issuer-uri: http://localhost:8081/realms/mosenioring
|
|
|
|
|
|
|
|
|
|
storage:
|
|
|
|
|
s3:
|
|
|
|
|
endpoint: http://localhost:9000
|
|
|
|
|
region: us-east-1
|
|
|
|
|
access-key: minio
|
|
|
|
|
secret-key: minio123
|
|
|
|
|
bucket: mosenioring
|
|
|
|
|
|
|
|
|
|
app:
|
|
|
|
|
outbox:
|
|
|
|
|
publish-delay-ms: 2000
|
2026-01-09 19:01:46 +01:00
|
|
|
batch-size: 50
|
2026-01-09 18:35:06 +01:00
|
|
|
tenant:
|
|
|
|
|
header: X-Tenant-Id
|
2026-01-09 19:01:46 +01:00
|
|
|
events:
|
|
|
|
|
medication-plan-created: MedicationPlanCreated
|
|
|
|
|
notification-requested: NotificationRequested
|
|
|
|
|
medication-exchange: medication.events
|
|
|
|
|
notification-exchange: notification.events
|
|
|
|
|
medication-queue: medication.plan.created
|
|
|
|
|
notification-queue: notification.requested
|
2026-01-09 18:35:06 +01:00
|
|
|
|
|
|
|
|
management:
|
|
|
|
|
endpoints:
|
|
|
|
|
web:
|
|
|
|
|
exposure:
|
|
|
|
|
include: health,info,prometheus
|
|
|
|
|
tracing:
|
|
|
|
|
sampling:
|
|
|
|
|
probability: 1.0
|
|
|
|
|
|
|
|
|
|
logging:
|
|
|
|
|
level:
|
|
|
|
|
root: INFO
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
spring:
|
|
|
|
|
config:
|
|
|
|
|
activate:
|
|
|
|
|
on-profile: local
|
|
|
|
|
security:
|
|
|
|
|
oauth2:
|
|
|
|
|
resourceserver:
|
|
|
|
|
jwt:
|
|
|
|
|
issuer-uri: http://localhost:8081/realms/mosenioring
|
|
|
|
|
|
|
|
|
|
app:
|
|
|
|
|
security:
|
|
|
|
|
local-auth-enabled: true
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
spring:
|
|
|
|
|
config:
|
|
|
|
|
activate:
|
|
|
|
|
on-profile: dev
|
|
|
|
|
datasource:
|
|
|
|
|
url: jdbc:postgresql://localhost:5432/mosenioring
|