Companies Home Search Profile

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

Focused View

TECH SCHOOL

14:32:34

423 View
  • 001 01-presentation-backend-master-class.pdf
  • 001 Design DB schema and generate SQL code with dbdiagram.io.mp4
    09:57
  • 002 02-presentation-docker-postgres-table-plus.pdf
  • 002 Install & use Docker + Postgres + TablePlus to create DB schema.mp4
    12:38
  • 002 trouble-shoot-root-does-not-exist.pdf
  • 003 03-presentation-db-migration.pdf
  • 003 How to write & run database migration in Golang.mp4
    09:51
  • 004 04-presentation-sqlc-crud.pdf
  • 004 Generate CRUD Golang code from SQL Compare dbsql, gorm, sqlx & sqlc.mp4
    21:21
  • 005 Write unit tests for database CRUD with random data in Golang.mp4
    20:04
  • 006 06-presentation-db-transaction.pdf
  • 006 A clean way to implement database transaction in Golang.mp4
    19:52
  • 007 DB transaction lock & How to handle deadlock in Golang.mp4
    28:20
  • 008 How to avoid deadlock in DB transaction Queries order matters!.mp4
    13:03
  • 009 09-presentation-transaction-isolation.pdf
  • 009 Deeply understand transaction isolation levels & read phenomena.mp4
    29:36
  • 010 10-presentation-github-action.pdf
  • 010 Setup Github Actions for Golang + Postgres to run automated tests.mp4
    19:26
  • external-links.zip
  • 001 11-presentation-gin.pdf
  • 001 Implement RESTful HTTP API in Go using Gin.mp4
    25:21
  • 002 12-presentation-config-viper.pdf
  • 002 Load config from file & environment variables in Go with Viper.mp4
    09:32
  • 003 13-presentation-db-mock.pdf
  • 003 Mock DB for testing HTTP API in Go and achieve 100% coverage.mp4
    26:54
  • 004 Implement transfer money API with a custom params validator.mp4
    14:24
  • 005 Add users table with unique & foreign key constraints in PostgreSQL.mp4
    14:07
  • 006 How to handle DB errors in Golang correctly.mp4
    11:12
  • 007 17-presentation-hash-password.pdf
  • 007 How to securely store passwords Hash password in Go with Bcrypt!.mp4
    16:53
  • 008 How to write stronger unit tests with a custom gomock matcher.mp4
    12:00
  • 009 19-presentation-paseto-vs-jwt.pdf
  • 009 Why PASETO is better than JWT for token-based authentication.mp4
    15:24
  • 010 How to create and verify JWT & PASETO token in Golang.mp4
    23:30
  • 011 21-login-api.pdf
  • 011 Implement login user API that returns PASETO or JWT access token in Go.mp4
    13:51
  • 012 22-presentation-gin-auth-middleware.pdf
  • 012 Implement authentication middleware and authorization rules in Golang using Gin.mp4
    29:17
  • 001 23-presentation-minimal-docker-image.pdf
  • 001 How to build a small Golang Docker image with a multistage Dockerfile.mp4
    11:59
  • 002 How to use docker network to connect 2 stand-alone containers.mp4
    10:07
  • 003 How to write docker-compose file and control service start-up orders.mp4
    16:08
  • 004 How to create a free-tier AWS account.mp4
    06:44
  • 005 Auto build & push docker image to AWS ECR with Github Actions.mp4
    20:44
  • 006 How to create a production database on AWS RDS.mp4
    10:08
  • 007 Store & retrieve production secrets with AWS secrets manager.mp4
    23:31
  • 008 30-presentation-kubernetes-cluster.pdf
  • 008 Kubernetes architecture & How to create an EKS cluster on AWS.mp4
    17:27
  • 009 How to use kubectl & k9s to connect to a kubernetes cluster on AWS EKS.mp4
    15:03
  • 010 How to deploy a web app to Kubernetes cluster on AWS EKS.mp4
    20:53
  • 011 Register a domain & set up A-record using Route53.mp4
    10:30
  • 012 How to use Ingress to route traffics to different services in Kubernetes.mp4
    09:50
  • 013 Auto issue & renew TLS certificates with cert-manager and Lets Encrypt.mp4
    14:25
  • 014 Automatic deploy to Kubernetes with Github Action.mp4
    14:38
  • external-links.zip
  • 001 37-presentation-session-refresh-token.pdf
  • 001 How to manage user session with refresh token.mp4
    22:55
  • 002 Generate DB documentation page and schema SQL dump from DBML.mp4
    11:09
  • 003 39-presentation-grpc.pdf
  • 003 Introduction to gRPC.mp4
    07:47
  • 004 40-presentation-grpc-protobuf.pdf
  • 004 Define gRPC API and generate Go code with protobuf.mp4
    16:15
  • 005 41-presentation-grpc-server-evans-client.pdf
  • 005 How to run a golang gRPC server and call its API.mp4
    10:08
  • 006 Implement gRPC API to create and login users in Go.mp4
    13:37
  • 007 gRPC Gateway write code once, serve both gRPC & HTTP requests.mp4
    16:42
  • 008 44-grpc-metadata.pdf
  • 008 How to extract information from gRPC metadata.mp4
    08:43
  • 009 Automatic generate & serve swagger documentation from Go server.mp4
    13:18
  • 010 Embed static front-end files inside Golang backend servers binary.mp4
    10:23
  • 011 Validate gRPC parameters and send humanmachine friendly response.mp4
    15:42
  • 012 Run DB migrations directly inside Golang code.mp4
    11:44
  • 013 Partial update DB record with SQLC nullable arguments.mp4
    18:21
  • 014 Build gRPC update API with optional parameters.mp4
    14:18
  • 015 Add authorization to protect gRPC API.mp4
    14:28
  • 016 52-presentation-grpc-logger.pdf
  • 016 Write structured logs for gRPC APIs.mp4
    15:18
  • 017 How to write HTTP logger middleware in Go.mp4
    10:04
  • external-links.zip
  • 001 54-presentation-async-worker.pdf
  • 001 Implement background worker with Redis task queue.mp4
    19:38
  • 002 Integrate async worker to Go web server.mp4
    13:58
  • 003 Why you should send async tasks to Redis within a DB transaction.mp4
    09:26
  • 004 Hey, its not the end yet!.html
  • 005 Whats next.html
  • external-links.zip
  • Description


    Learn everything about backend web development: Golang, Postgres, Redis, Gin, gRPC, Docker, Kubernetes, AWS, CI/CD

    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

    Who is this 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
  • More details


    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:

    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, 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, such as: sending emails, gracefully shutting down servers, CORS, bulk inserts, etc. 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

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    ​At Tech School, we believe that everyone deserves a good and free education. Tech School aims to give everyone a chance to learn IT by providing free, high-quality tutorials and coding courses. The topics are wide-ranging and suitable for many levels of tech knowledge: from noob to pro.The most important thing is that all content created by Tech School is free and will always be free. You can access them for free on our Youtube channel.The courses are also published here on Udemy. So if you like the lectures and want to support us to create more valuable content for the community, please purchase the courses, give us some reviews, and spread the word to your friends and colleagues so that more people will have a chance to learn for free.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 56
    • duration 14:32:34
    • Release Date 2023/02/25