DEV Community

Cover image for Designing Continuous Build Systems: Handling Webhooks with Sanic
Cristian Medina
Cristian Medina

Posted on • Originally published at tryexceptpass.org on

Designing Continuous Build Systems: Handling Webhooks with Sanic

After covering how to design a build pipeline and define build directives in the continuous builds series, it’s time to look at handling events from a code repository.

As internet standards evolved over the years, the HTTP protocol has become more prevalent. It’s easier to route, simpler to implement and even more reliable. This ubiquity makes it easier for applications that traverse or live on the public internet to communicate with each other. As a result of this, the idea of webhooks came to be as an “event-over-http” mechanism.

With GitHub as the repository management platform, we have the advantage of using their webhook system to communicate user actions over the internet and into our build pipeline.

Read On ...

Top comments (0)