Skip to content

Commit

Permalink
Merge branch 'develop' into feat/oidf-51
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmelati authored Jul 29, 2024
2 parents fef4ab9 + fc14070 commit 02f843a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/admin-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ dependencies {
api(projects.modules.persistence)
implementation(libs.springboot.actuator)
implementation(libs.springboot.web)
implementation(libs.springboot.data.jdbc)
implementation(libs.kotlin.reflect)
testImplementation(libs.springboot.test)
runtimeOnly(libs.postgres)
runtimeOnly(libs.springboot.devtools)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ spring.config.import=optional:file:../../.env[.properties]

spring.application.name=OpenID Federation

spring.datasource.url=${DATASOURCE_URL}
spring.datasource.username=${DATASOURCE_USER}
spring.datasource.password=${DATASOURCE_PASSWORD}
spring.datasource.driver-class-name=org.postgresql.Driver

# Mapping /actuator/health to /status
management.endpoints.web.base-path=/
management.endpoints.web.path-mapping.health=status

0 comments on commit 02f843a

Please sign in to comment.