Skip to content

Commit

Permalink
Merge pull request #17 from SelimHorri/stage
Browse files Browse the repository at this point in the history
Stage
  • Loading branch information
SelimHorri authored Nov 23, 2021
2 parents 3e0b26f + 4996b46 commit a49f480
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,24 @@

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
@EnableConfigServer
public class CloudConfigApplication {

public static void main(String[] args) {
SpringApplication.run(CloudConfigApplication.class, args);
}




}






0 comments on commit a49f480

Please sign in to comment.