-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be03c9f
commit d909198
Showing
6 changed files
with
34 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 9 additions & 7 deletions
16
subscription-service/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
spring.config.import=classpath:/shared.properties | ||
spring.r2dbc.url=r2dbc:postgresql://localhost/stellio_subscription | ||
spring.r2dbc.username=stellio | ||
spring.r2dbc.password=stellio_password | ||
spring.r2dbc.url = r2dbc:postgresql://localhost/stellio_subscription | ||
spring.r2dbc.username = stellio | ||
spring.r2dbc.password = stellio_password | ||
# Required for Flyway to know where the DB is located | ||
spring.flyway.url=jdbc:postgresql://localhost/stellio_subscription | ||
spring.flyway.user=${spring.r2dbc.username} | ||
spring.flyway.password=${spring.r2dbc.password} | ||
spring.flyway.url = jdbc:postgresql://localhost/stellio_subscription | ||
spring.flyway.user = ${spring.r2dbc.username} | ||
spring.flyway.password = ${spring.r2dbc.password} | ||
# Client registration used to get entities from search-service | ||
spring.security.oauth2.client.registration.keycloak.authorization-grant-type=client_credentials | ||
spring.security.oauth2.client.registration.keycloak.client-id=client-id | ||
spring.security.oauth2.client.registration.keycloak.client-secret=client-secret | ||
spring.security.oauth2.client.provider.keycloak.token-uri=https://my.sso/token | ||
|
||
subscription.entity-service-url=http://localhost:8083 | ||
# Stellio url used to form the link to get the contexts associated to a notification | ||
subscription.stellio-url=http://localhost:8080 | ||
subscription.mqtt.clientId=stellio-mqtt-client | ||
server.port=8084 | ||
|
||
server.port = 8084 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters