This Series doesn't focuses on fundamentals of Go. It focuses on how to build backend services. Indiviuals interested in learning web development with

Blog project with Gin, Docker and Mysql

submited by
Style Pass
2021-05-25 08:00:07

This Series doesn't focuses on fundamentals of Go. It focuses on how to build backend services. Indiviuals interested in learning web development with Gin Framework are ideal candidates.

This Series teaches you the fundamental of building Rest APIs with Go. After completing this series you will know how to do the following :

The above mentioned versions are installed on my machine. You can find the full source of the series in this repository, feel free to fork it:

Let's start by creating a blog folder in your preferred location. Then initialize a new Go module inside blog folder with following command.

The above command will install Gin Framework and Gorm and create go.sum file. This file stores info about the dependencies and their versions.

Gin is lightweight, well-documented and fast HTTP web framework. The creators claims that Gin is 40 times faster than other similar framework to Gin

Leave a Comment