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

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

Size
5 GB
Seeders
17
Leechers
0
Files
73
Category
Added
01/26/23 at 6:28pm GMT+1
Infohash
37b926aa5ba0da6dab2ed692f18431e2de5e292b

Description


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 5 sections:



   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.

   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.

   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.

   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.

   Then the 5th section will introduce you to asynchronous processing in Golang using background workers and Redis as its message queue, and how to gracefully shut down the server to protect your 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



Requirements



   Only basic programming skill is needed.



Last Updated 1/2023

File list
  • Backend Master Class [Golang + Postgres + Kubernetes + gRPC]
  • .pad/0 1 B
  • .pad/1 48 B
  • .pad/2 283.2 KB
  • TutsNode.net.txt 63 B
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/001 Design DB schema and generate SQL code with dbdiagram.io_en.srt 14.1 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/002 Install & use Docker + Postgres + TablePlus to create DB schema_en.srt 19.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/002 trouble-shoot-root-does-not-exist.pdf 284.3 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/003 How to write & run database migration in Golang_en.srt 14.3 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/004 Generate CRUD Golang code from SQL Compare dbsql, gorm, sqlx & sqlc_en.srt 31.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/005 Write unit tests for database CRUD with random data in Golang_en.srt 28.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/006 A clean way to implement database transaction in Golang_en.srt 29.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/007 DB transaction lock & How to handle deadlock in Golang_en.srt 37.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/008 How to avoid deadlock in DB transaction Queries order matters!_en.srt 18.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/009 Deeply understand transaction isolation levels & read phenomena.mp4 145.2 MB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/009 Deeply understand transaction isolation levels & read phenomena_en.srt 43.1 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/010 Setup Github Actions for Golang + Postgres to run automated tests_en.srt 26.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/01 - Working with database [Postgres + SQLC]/external-links.txt 1.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/001 Implement RESTful HTTP API in Go using Gin_en.srt 35.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/002 Load config from file & environment variables in Go with Viper_en.srt 13.1 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/003 Mock DB for testing HTTP API in Go and achieve 100% coverage.mp4 158.7 MB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/003 Mock DB for testing HTTP API in Go and achieve 100% coverage_en.srt 38.9 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/004 Implement transfer money API with a custom params validator_en.srt 20.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/005 Add users table with unique & foreign key constraints in PostgreSQL_en.srt 20 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/006 How to handle DB errors in Golang correctly_en.srt 15.9 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/007 How to securely store passwords Hash password in Go with Bcrypt!_en.srt 23.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/008 How to write stronger unit tests with a custom gomock matcher_en.srt 18.1 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/009 Why PASETO is better than JWT for token-based authentication_en.srt 21.8 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/010 How to create and verify JWT & PASETO token in Golang.mp4 175.9 MB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/010 How to create and verify JWT & PASETO token in Golang_en.srt 33.5 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/011 21-login-api.pdf 509.6 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/011 Implement login user API that returns PASETO or JWT access token in Go_en.srt 19.5 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/012 Implement authentication middleware and authorization rules in Golang using Gin.mp4 168.2 MB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/02 - Building RESTful HTTP JSON API [Gin + JWT + PASETO]/012 Implement authentication middleware and authorization rules in Golang using Gin_en.srt 44 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/001 How to build a small Golang Docker image with a multistage Dockerfile_en.srt 17.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/002 How to use docker network to connect 2 stand-alone containers_en.srt 15.8 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/003 How to write docker-compose file and control service start-up orders_en.srt 23.9 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/004 How to create a free-tier AWS account_en.srt 10.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/005 Auto build & push docker image to AWS ECR with Github Actions_en.srt 28.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/006 How to create a production database on AWS RDS_en.srt 14.1 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/007 Store & retrieve production secrets with AWS secrets manager.mp4 171 MB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/007 Store & retrieve production secrets with AWS secrets manager_en.srt 34.1 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/008 Kubernetes architecture & How to create an EKS cluster on AWS_en.srt 26.9 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/009 How to use kubectl & k9s to connect to a kubernetes cluster on AWS EKS_en.srt 22.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/010 How to deploy a web app to Kubernetes cluster on AWS EKS_en.srt 31.3 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/011 Register a domain & set up A-record using Route53_en.srt 15 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/012 How to use Ingress to route traffics to different services in Kubernetes_en.srt 14.8 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/013 Auto issue & renew TLS certificates with cert-manager and Let's Encrypt_en.srt 19.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/014 Automatic deploy to Kubernetes with Github Action_en.srt 20.3 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/03 - Deploying the application to production [Docker + Kubernetes + AWS]/external-links.txt 103 B
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/001 How to manage user session with refresh token_en.srt 32.6 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/002 Generate DB documentation page and schema SQL dump from DBML_en.srt 15 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/003 Introduction to gRPC_en.srt 10.7 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/004 Define gRPC API and generate Go code with protobuf_en.srt 22.8 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/005 How to run a golang gRPC server and call its API_en.srt 14.5 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/006 Implement gRPC API to create and login users in Go_en.srt 19.6 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/007 gRPC Gateway write code once, serve both gRPC & HTTP requests_en.srt 25 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/008 How to extract information from gRPC metadata_en.srt 12.6 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/009 Automatic generate & serve swagger documentation from Go server_en.srt 18.8 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/010 Embed static front-end files inside Golang backend server's binary_en.srt 15.3 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/011 Validate gRPC parameters and send humanmachine friendly response_en.srt 22.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/012 Run DB migrations directly inside Golang code_en.srt 17.4 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/013 Partial update DB record with SQLC nullable arguments_en.srt 24.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/014 Build gRPC update API with optional parameters_en.srt 19.3 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/015 Add authorization to protect gRPC API_en.srt 20.2 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/016 Write structured logs for gRPC APIs_en.srt 22 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/017 How to write HTTP logger middleware in Go_en.srt 15 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/04 - Advanced Backend Topics [Sessions + gRPC]/external-links.txt 552 B
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/05 - Asynchronous processing with background workers [Asynq + Redis]/001 Implement background worker with Redis task queue_en.srt 27.1 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/05 - Asynchronous processing with background workers [Asynq + Redis]/002 Integrate async worker to Go web server_en.srt 20 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/05 - Asynchronous processing with background workers [Asynq + Redis]/003 Why you should send async tasks to Redis within a DB transaction_en.srt 13.5 KB
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/05 - Asynchronous processing with background workers [Asynq + Redis]/004 Hey, it's not the end yet!.html 454 B
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/05 - Asynchronous processing with background workers [Asynq + Redis]/005 What's next.html 654 B
  • [TutsNode.net] - Backend Master Class [Golang + Postgres + Kubernetes + gRPC]/05 - Asynchronous processing with background workers [Asynq + Redis]/external-links.txt 264 B

Rating
Not rated yet
Log in to rate

Comments

No comments yet.


Similar torrents
NameSizeDate
78 MB11/10/2539452626
42 MB07/15/2630392019
29 MB01/07/2628981929
10 MB07/12/2328601907
2.3 GB06/27/2628462379
2.8 GB07/22/26879421
1.1 GB07/19/26490625
325 MB07/19/2644434
1.4 GB07/19/2641984
4.3 GB07/19/26397214
628 MB07/15/2638021
19.5 GB07/22/26366895
1.3 GB06/27/26349194
6.4 GB07/25/26340118
2.7 GB07/22/2633448