Book Image

Building Distributed Applications in Gin

By : Mohamed Labouardy
4 (1)
Book Image

Building Distributed Applications in Gin

4 (1)
By: Mohamed Labouardy

Overview of this book

Gin is a high-performance HTTP web framework used to build web applications and microservices in Go. This book is designed to teach you the ins and outs of the Gin framework with the help of practical examples. You’ll start by exploring the basics of the Gin framework, before progressing to build a real-world RESTful API. Along the way, you’ll learn how to write custom middleware and understand the routing mechanism, as well as how to bind user data and validate incoming HTTP requests. The book also demonstrates how to store and retrieve data at scale with a NoSQL database such as MongoDB, and how to implement a caching layer with Redis. Next, you’ll understand how to secure and test your API endpoints with authentication protocols such as OAuth 2 and JWT. Later chapters will guide you through rendering HTML templates on the server-side and building a frontend application with the React web framework to consume API responses. Finally, you’ll deploy your application on Amazon Web Services (AWS) and learn how to automate the deployment process with a continuous integration and continuous delivery (CI/CD) pipeline. By the end of this Gin book, you will be able to design, build, and deploy a production-ready distributed application from scratch using the Gin framework.
Table of Contents (16 chapters)
1
Section 1: Inside the Gin Framework
3
Section 2: Distributed Microservices
9
Section 3: Beyond the Basics

Maintaining multiple runtime environments

In a real-world scenario, you'll need multiple environments to avoid pushing broken features or major bugs to a sandbox or staging environment (or worse, a production environment) before validating them.

You can create an EC2 instance to host the staging environment by running a new EC2 instance based on the sandbox environment we created in previous chapters:

  1. Select the sandbox instance and click on Actions from the action bar. Then, click on Launch more like this from the Image and template drop-down list:

    Figure 9.25 – Replicating the sandbox environment

    This option will automatically populate the Amazon EC2 launch wizard with configuration details from the selected instance.

  2. Update the Name tag value to staging and click on Launch to provision the instance:

    Figure 9.26 – Staging environment running in an EC2 instance

  3. Once the instance is up and running, update CircleCI so that it tags the Docker image...