All checks were successful
continuous-integration/drone/push Build is passing
Updated Keycloak settings in `realm-hemhub.json` to include additional roles, user attributes, client scopes, and OpenID Connect configurations. Modified `application.yml` to replace `issuer-uri` with `jwk-set-uri` for JWT handling. Enhanced `docker-compose.yml` to include persistent volumes, updated Keycloak image, and environment variables for better container interoperability.
19 lines
352 B
YAML
19 lines
352 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:8081/realms/hemhub/protocol/openid-connect/certs
|