26 lines
516 B
YAML
26 lines
516 B
YAML
server:
|
|
port: 8080
|
|
|
|
spring:
|
|
datasource:
|
|
url: jdbc:postgresql://postgres:5432/hemhub
|
|
username: hemhub
|
|
password: hemhub
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: none
|
|
flyway:
|
|
enabled: true
|
|
security:
|
|
oauth2:
|
|
resourceserver:
|
|
jwt:
|
|
jwk-set-uri: http://keycloak:8080/realms/hemhub/protocol/openid-connect/certs
|
|
issuer-uri: https://rubble.se/hemhub/auth/realms/hemhub
|
|
hemhub:
|
|
schedule:
|
|
reminders:
|
|
# Default: every day at 08:00
|
|
cron: "0 0 8 * * *"
|
|
|