Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.36 KB | None | 0 0
  1. logging:
  2.     level:
  3.         org.springframework.cloud: TRACE
  4.  
  5. management:
  6.   security:
  7.     enabled: false
  8.  
  9. server:
  10.   port: 8888
  11.  
  12. spring:
  13.   cloud:
  14.     config:
  15.       server:
  16.         git:
  17.           uri: http://ic.sanitas.dom/git/neoris/configuration-des
  18.           clone-on-start: true
  19.           force-pull: true
  20.           searchPaths: apps, log
  21.           repos:
  22.             local:
  23.               pattern: '*/local'
  24.               searchPats: apps, log
  25.               uri: file://C:\users\guillermo.perezm\ruta\al\repo
  26.             development:
  27.               clone-on-start: true
  28.               force-pull: true
  29.               pattern: '*/development'
  30.               searchPaths: apps, log
  31.               uri: http://ic.sanitas.dom/git/neoris/configuration-des
  32.             preproduction:
  33.               force-pull: true
  34.               pattern: '*/preproduction'
  35.               searchPaths: apps, log
  36.               uri: http://ic.sanitas.dom/git/neoris/configuration-pre
  37.               username: '${PRE_GIT_REPO_USER}'
  38.               password: '${PRE_GIT_REPO_PASSWORD}'
  39.             production:
  40.               force-pull: true
  41.               pattern: '*/production'
  42.               searchPaths: apps, log
  43.               uri: http://ic.sanitas.dom/git/neoris/configuration-pro
  44.               username: '${PRO_GIT_REPO_USER}'
  45.               password: '${PRO_GIT_REPO_PASSWORD}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement