Full-stack application in Go: Quick start
jorgeortiz.dev·4h·
Discuss: r/golang
Flag this post

In the article introducing this series, I shared that I wanted to explore full-stack app development. In particular, I wanted to develop a full-stack application that helps people manage their checklists. Users will use a browser to connect to the front-end server, which, in turn, will use the API provided by the back-end server to access and modify the checklists.

This article is the first one describing what I am doing in Go. I will cover project creation and structure, and build automation. We won’t have much of the application implemented by the end of this article, but it should be a good and helpful start. So buckle up and let’s get cracking!

Project structure and setup

First things first. Let’s initialize the module with the following commands on the shell.

mkdi...

Similar Posts

Loading similar posts...