Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Backend Master Class [Golang + Postgres + Kubernetes + gRPC]
Bestseller
Highest Rated
Rating: 4.7 out of 5(3,108 ratings)
48,967 students

Backend Master Class [Golang + Postgres + Kubernetes + gRPC]

Learn everything about backend web development: Golang, Postgres, Redis, Gin, gRPC, Docker, Kubernetes, AWS, CI/CD
Created byTECH SCHOOL
Last updated 4/2025
English

What you'll learn

  • Design database schema using DBML and automatically generate SQL code from it
  • Deeply understand the DB isolation levels, transactions and how to avoid deadlock
  • Automatically generate Golang code to interact with the database
  • Develop a RESTful backend web service using the Gin framework
  • Secure the APIs with user authentication, JWT and PASETO
  • Write stronger test set with high coverage using interfaces and mocking
  • Build a minimal Docker image for deployment and use Docker-compose for development
  • Set up Github Action to automatically build and deploy the app to AWS Kubernetes cluster
  • Register a domain and config Kubernetes ingress to route traffic to the web service
  • Enable automatic issue & renew TLS certificate for the domain with Let's Encrypt
  • Take your web service to the next level with gRPC and gRPC gateway
  • Run background workers to process tasks asynchronously with Redis and Asynq

Course content

6 sections81 lectures18h 51m total length
  • Design DB schema and generate SQL code with dbdiagram.io9:57

    Hello guys, welcome to the course!

    In the resource, there's a link to the Github repository, where you can find all the codes used in the lectures. You can also take a look at the Pull request history to understand how it evolves over time.

    The most important thing is to understand the ideas and implement them on your own.

    If you face any troubles that you can't solve on yourself, please ask questions in the Q&A section or in Tech School's discord group. I will try my best to help you. Besides, you might also find some valuable answers from other students as well.

    Thank you for taking the course, and hope you will find it interesting and useful.
    Happy learning! Cheers!

  • Setup development environment on Windows: WSL2, Go, VSCode, Docker, Make, Sqlc9:14

    Note: This video is recorded after other videos in the course, so the version of Go and SQLC is newer than in the others.

  • Setup development environment on MacOS: Install Go and Visual Studio Code6:18
  • Use Docker + Postgres + TablePlus to create DB schema12:38
  • How to write & run database migration in Golang9:51
  • Generate CRUD Golang code from SQL | Compare db/sql, gorm, sqlx & sqlc21:21

    Hey guys, in this lecture we will learn how to generate CRUD golang code from SQL queries using sqlc.

    The video was recorded on a Mac, but it should be similar for Linux and Windows. You can refer to it in the sqlc's documentation page.

    For Windows users, please follow the previous lecture about "Setup development environment on Windows" to learn how to install & run it with WSL.

  • Write SQL queries for transfers and entries table and generate Go code
  • Write unit tests for database CRUD with random data in Golang20:04
  • Configure the right sql_package in your sqlc.yaml file
  • A clean way to implement database transaction in Golang19:52
  • DB transaction lock & How to handle deadlock in Golang28:20
  • How to avoid deadlock in DB transaction? Queries order matters!13:03
  • Deeply understand transaction isolation levels & read phenomena29:36
  • Setup Github Actions for Golang + Postgres to run automated tests19:26

Requirements

  • Only basic programming skill is needed
  • If you're new to Go, I suggest learning its syntax first on the "Tour of Go" website

Description

In this course, you will learn step-by-step how to design, develop and deploy a backend web service from scratch. I believe the best way to learn programming is to build a real application. Therefore, throughout the course, you will learn how to build a backend web service for a simple bank. It will provide APIs for the frontend to do the following things:

  • Create and manage bank accounts.

  • Record all balance changes to each of the accounts.

  • Perform a money transfer between 2 accounts.

The programming language we will use to develop the service is Golang, but the course is not just about coding in Go. You will learn a lot of different topics regarding backend web development. They are presented in 6 sections:

  1. In the 1st section, you will learn deeply about how to design the database, generate codes to talk to the DB in a consistent and reliable way using transactions, understand the DB isolation levels, and how to use it correctly in production. Besides the database, you will also learn how to use docker for local development, how to use Git to manage your codes, and how to use GitHub Action to run unit tests automatically.

  2. In the 2nd section, you will learn how to build a set of RESTful HTTP APIs using Gin - one of the most popular Golang frameworks for building web services. This includes everything from loading app configs, mocking DB for more robust unit tests, handling errors, authenticating users, and securing the APIs with JWT and PASETO access tokens. 

  3. In the 3rd section, you will learn how to build your app with Docker and deploy it to a production Kubernetes cluster on AWS. The lectures are very detailed with a step-by-step guide, from how to build a minimal docker image, set up a free-tier AWS account, create a production database, store and retrieve production secrets, create a Kubernetes cluster with EKS, use GitHub Action to automatically build and deploy the image to the EKS cluster, buy a domain name and route the traffics to the service, secure the connection with HTTPS and auto-renew TLS certificate from Let's Encrypt.

  4. In the 4th section, we will discuss several advanced backend topics such as managing user sessions, building gRPC APIs, using gRPC gateway to serve both gRPC and HTTP requests at the same time, embedding Swagger documentation as part of the backend service, partially updating a record using optional parameters, and writing structured logger HTTP middlewares and gRPC interceptors.

  5. Then the 5th section will introduce you to asynchronous processing in Golang using background workers and Redis as its message queue. We'll also learn how to create and send emails to users via Gmail SMTP server. Along the way, we'll learn more about writing unit tests for our gRPC services that might involve mocking multiple dependencies at once.

  6. The final section 6th concludes the course with lectures about how to improve the stability and security of the server. We'll keep updating dependency packages to the latest version, use Cookies to make the refresh token more secure, and learn how to gracefully shut down the server to protect the processing resources. As this part is still a work in progress, we will keep making and uploading new videos about new topics in the future. So please come back here to check them out from time to time.

This course is designed with a lot of details, so that everyone, even those with very little programming experience can understand and do it by themselves. I firmly believe that after the course, you will be able to work much more confidently and effectively on your projects.

Who this course is for:

  • Anyone who wants to learn about backend web service development using Golang, Postgres, Docker & Kubernetes
  • The course is designed so that even a beginner with very basic programming skills can understand
  • But I'm sure even developers with more experienced (intermediate level) can still learn something new