This application is used as a server for your application's configuration stored in a version-controlled repository ( such as Git) and have your applications retrieve their configuration at runtime.
| Key | Type | Description | Example |
|---|---|---|---|
| spring.application.name | String | The name of the application. In this case : config-server |
|
| spring.cloud.config.server.git.uri | String | To configure the URI of the Git repository where your application's configuration files are stored. | https://github.com/mayank19o7/postgres-db-config |
| spring.cloud.config.server.git.skipSslValidation | Boolean | To configure whether the Config Server should skip SSL certificate validation when communicating with the Git repository. | By default, this property is set to false. |
To run this project locally, you need to have Java and Maven installed on your machine.
- Clone the repository
- Navigate to the project directory
- Update the configuration like
server.portand...git.uriinapplication.propertiesfile. - Run
mvn spring-boot:runto start the application.
- Spring Boot
- Spring Cloud Config Server
- Mayank Sahu (https://github.com/mayank19o7).