Skip to content

Commit

Permalink
update applications.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Yinnii committed Aug 5, 2024
1 parent 317dc0c commit 9e06b6c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions tmitocar-service/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ service.class=TmitocarServiceApplication
service.description=Service handling uploaded files.
tmitocar.api-docs.uri=http://localhost:8080

spring.security.oauth2.resourceserver.jwt.issuer-uri=
spring.security.oauth2.resourceserver.jwt.jwk-set-uri=
spring.security.oauth2.resourceserver.jwt.issuer-uri=${ISSUER_URI}
spring.security.oauth2.resourceserver.jwt.jwk-set-uri=${SET_URI}

spring.datasource.url=
spring.datasource.username=
spring.datasource.password=
spring.datasource.url=${SPRING_DATASOURCE_URL}
spring.datasource.username=${SPRING_DATASOURCE_USERNAME}
spring.datasource.password=${SPRING_DATASOURCE_PASSWORD}

spring.data.mongodb.uri=
spring.data.mongodb.database=sbf
privatekey=
publicKey=
spring.data.mongodb.uri=${SPRING_DATA_MONGODB_URI}
spring.data.mongodb.database=${SPRING_DATA_MONGODB_DATABASE}
privatekey=${PRIVATE_KEY}
publicKey=${PUBLIC_KEY}

xapi.url =
xapi.homepage =
xapi.url = ${XAPI_URL}
xapi.homepage = ${XAPI_HOMEPAGE}

0 comments on commit 9e06b6c

Please sign in to comment.