/go_gin_boilerplate

Quick scaffolding for developing web application based on Gin.

Primary LanguageGo

Go Gin Boilerplate

Features

  • Hot reload
  • Mysql
  • Config
  • Controller
  • Router
  • Middleware
  • Go Dep

Start

Make sure you have Go installed.

Install:

go get github.com/abel1105/go_gin_boilerplate
cd $GOPATH/src/github.com/abel1105/go_gin_boilerplate

then get all dependency

make install

Start hot reload server:

Default running on 8080 port

make start

Build:

compile file will be located in bin

make compile