Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The property files will either come from the file-system or use GIT.

 

Code Block
titlebootstrap.properties
encrypt.failOnError=false
encrypt.key=IGotTheKey
encrypt.key-store.secret=IGotTheSecret
spring.cloud.config.server.bootstrap=true (*)

...

Code Block
titlebootstrap.properties - extended for using the file-system
spring.profiles.active=native
spring.cloud.config.server.native.searchLocations

 

Code Block
titlebootstrap.properties - extended for using GIT - basic authentication
spring.cloud.config.server.git.uri=https://git.blueriq.com/config-repo.git
spring.cloud.config.server.git.basedir=target/config
spring.cloud.config.server.git.username=<git_username>
spring.cloud.config.server.git.password=<git_password>

...

UI Text Box
typenote

Currently static resources are not managed by the spring cloud config server (for example frontend sources and exports). This may change in a future release.

Further reading

Reading properties from file system [editor]

...