MicroservicesTutorial/config-service/src/main/resources/application.yaml

15 lines
329 B
YAML

server:
port: 8081
spring:
cloud:
config:
server:
git:
defaultLabel: "config-server"
uri: https://git.gzcode.xyz/atancito/MicroservicesTutorial
searchPaths: config-data
username: ${GIT_USER}
password: ${GIT_PASSWORD}
application:
name: config-service