Skip to content

Instantly share code, notes, and snippets.

@pdincau
pdincau / springcloudexample
Created November 26, 2018 09:55
Spring cloud - Incremental example
Starting point:
* book-service f4045bf
* book-evaluation 8d47058
Service discovery and multiple instances of book-evaluation:
* book-service 8f22aff
* book-evaluation master
* eureka-server master

Continuous Integration - Know your opportunities

Continuous Integration in a nutshell

Continuous Integration (CI) is an important practice every team should adopt in order to detect defects and errors early and solve integration problems easily. Roughly speaking we may say that CI is a practice that allows the growth of solid software by giving greater confidence to the developers and better products to the final customers.

The concept behind CI is fairly simple: the codebase is owned by several developers that continuously integrate their changes to a common version control system. For each integration the system runs a predefined set of tasks automatically; these tasks may vary from running all the tests to building all the components.

@pdincau
pdincau / readme.md
Last active April 1, 2024 14:22
Study Path on microservices