[NO-ISSUE] Fix application properties
This commit is contained in:
parent
ed96cbab8f
commit
9adcecb04f
|
@ -6,9 +6,9 @@ spring:
|
|||
profiles:
|
||||
active: ${SPRING_ACTIVE_PROFILE:local}
|
||||
group:
|
||||
local: "local,datasource-local"
|
||||
development: "development,datasource-development"
|
||||
production: "production, datasource-production"
|
||||
local: "local,datasource-local,webclient-local"
|
||||
development: "development,datasource-development,webclient-development"
|
||||
production: "production, datasource-production,webclient-production"
|
||||
freemarker:
|
||||
enabled: false
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
webclient:
|
||||
init: true
|
||||
units:
|
||||
- unit-name: ppn-sender-api
|
||||
base-url: http://localhost:20082
|
|
@ -1,5 +0,0 @@
|
|||
webclient:
|
||||
init: true
|
||||
units:
|
||||
- unit-name: ppn-sender-api
|
||||
base-url: http://localhost:20082
|
|
@ -1,5 +0,0 @@
|
|||
webclient:
|
||||
init: true
|
||||
units:
|
||||
- unit-name: ppn-sender-api
|
||||
base-url: http://ppn_sender:20080
|
|
@ -9,6 +9,7 @@ dependencies {
|
|||
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
||||
implementation 'org.springframework.boot:spring-boot-configuration-processor'
|
||||
implementation 'org.springframework.cloud:spring-cloud-starter-config'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
||||
implementation 'org.telegram:telegrambots:5.3.0'
|
||||
|
||||
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
||||
|
|
|
@ -5,6 +5,10 @@ spring:
|
|||
allow-bean-definition-overriding: true
|
||||
profiles:
|
||||
active: ${SPRING_ACTIVE_PROFILE:local}
|
||||
group:
|
||||
local: "local,webclient-local"
|
||||
development: "development,webclient-development"
|
||||
production: "production,webclient-production"
|
||||
freemarker:
|
||||
enabled: false
|
||||
|
||||
|
@ -12,4 +16,10 @@ server:
|
|||
port: 20080
|
||||
error:
|
||||
whitelabel:
|
||||
enabled: false
|
||||
enabled: false
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: refresh
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
webclient:
|
||||
init: true
|
||||
units:
|
||||
- unit-name: ppn-processor-api
|
||||
base-url: http://localhost:20081
|
|
@ -1,5 +0,0 @@
|
|||
webclient:
|
||||
init: true
|
||||
units:
|
||||
- unit-name: ppn-processor-api
|
||||
base-url: http://localhost:20081
|
|
@ -1,5 +0,0 @@
|
|||
webclient:
|
||||
init: true
|
||||
units:
|
||||
- unit-name: ppn-processor-api
|
||||
base-url: http://ppn_processor:20080
|
|
@ -6,9 +6,9 @@ spring:
|
|||
profiles:
|
||||
active: ${SPRING_ACTIVE_PROFILE:local}
|
||||
group:
|
||||
local: local, slackapi-local
|
||||
development: development, slackapi-development
|
||||
production: production, slackapi-production
|
||||
local: "local,slackapi-local,webclient-local"
|
||||
development: "development,slackapi-development,webclient-development"
|
||||
production: "production,slackapi-production,webclient-production"
|
||||
freemarker:
|
||||
enabled: false
|
||||
|
||||
|
|
Loading…
Reference in New Issue