Skip to content

Instantly share code, notes, and snippets.

@norbertpotocki
Created March 17, 2016 23:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norbertpotocki/dacdcc6671a2158ded5e to your computer and use it in GitHub Desktop.
Save norbertpotocki/dacdcc6671a2158ded5e to your computer and use it in GitHub Desktop.
Configuration source backed by git
@Bean
ConfigurationProvider configurationProvider(@Value("${configuration.environment}") String configurationEnvironment) {
ConfigurationSource GitSource = new GitConfigurationSourceBuilder()
.withRepositoryURI("https://Github.com/myUser/my-config-fork.Git")
.build();
return new ConfigurationProviderBuilder()
.withConfigurationSource(GitSource)
.withEnvironment(new ImmutableEnvironment("app/" + configurationEnvironment + "/feature"))
.withReloadStrategy(new PeriodicalReloadStrategy(30, TimeUnit.SECONDS))
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment