The following steps need to be followed to create a new Config Server using STS:
- Create a new Spring Starter project and select Config Server and Actuator, as shown in this screenshot:
- Set up a Git repository. This could be done by pointing to a remote Git configuration repository, such as https://github.com/spring-cloud-samples/config-repo. This URL is an indicative one, a Git repository used by the Spring Cloud examples. We will have to use our own Git repository instead.
- Alternatively, a local-file-system-based Git repository can be used. In a real production scenario, an external Git is recommended. The ...