Skip to content

Instantly share code, notes, and snippets.

@migueldoctor
Created April 2, 2019 13:35
Show Gist options
  • Save migueldoctor/6c704152e94ea0659b9c7bd46a971727 to your computer and use it in GitHub Desktop.
Save migueldoctor/6c704152e94ea0659b9c7bd46a971727 to your computer and use it in GitHub Desktop.
package com.kesizo.microservices.config;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class ApplicationConfigServer {
public static void main(String[] args) {
SpringApplication.run(ApplicationConfigServer.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment