Skip to content

Instantly share code, notes, and snippets.

@jaocamp
Created July 5, 2017 23:17
Show Gist options
  • Save jaocamp/426ec357cda355c8b53e5c30f3ad12d4 to your computer and use it in GitHub Desktop.
Save jaocamp/426ec357cda355c8b53e5c30f3ad12d4 to your computer and use it in GitHub Desktop.
DeliveryConfigServerApplication
package com.coderef.delivery;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class DeliveryConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(DeliveryConfigServerApplication.class, args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment