Getting started with Git

Git basic concepts Repository This is where we store our code. On our local machine, a repository is a directory contain code. Version control To put it short, version control systems are tool to keep track of code changes. It helps users easily investigate, view the state of the whole repository at a specific commit. … Read more

Spring Cloud Config Server Complete Guide (w/ Examples)

Overview of Spring Cloud Config Server Spring Cloud Config server is a REST application that is built on top of Spring Boot. The main purpose of a config server is to store the configurations for all services in an application (think microservices). Thus, each service doesn’t need to store its configurations. They just need to … Read more