golang-gin-realworld-example-app

使用Golang + Gin构建的示例性真实世界应用程序。(Exemplary real world application built with Golang + Gin)

Github星跟踪图

RealWorld Example App

Build Status
codecov
License: MIT
GoDoc

Golang/Gin codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.

This codebase was created to demonstrate a fully fledged fullstack application built with Golang/Gin including CRUD operations, authentication, routing, pagination, and more.

How it works

.
├── gorm.db
├── hello.go
├── common
│   ├── utils.go        //small tools function
│   └── database.go     //DB connect manager
└── users
    ├── models.go       //data models define & DB operation
    ├── serializers.go  //response computing & format
    ├── routers.go      //business logic & router binding
    ├── middlewares.go  //put the before & after logic of handle request
    └── validators.go   //form/json checker

Getting started

Install the Golang

https://golang.org/doc/install

Environment Config

make sure your ~/.*shrc have those varible:

➜  echo $GOPATH
/Users/zitwang/test/
➜  echo $GOROOT
/usr/local/go/
➜  echo $PATH
...:/usr/local/go/bin:/Users/zitwang/test//bin:/usr/local/go//bin

Install Govendor & Fresh

I used Govendor manage the package, and Fresh can help build without reload

https://github.com/kardianos/govendor

https://github.com/pilu/fresh

cd
go get -u github.com/kardianos/govendor
go get -u github.com/pilu/fresh
go get -u golang.org/x/crypto/...

Start

➜  govendor sync
➜  govendor add +external
➜  fresh

Testing

➜  go test -v ./... -cover

Todo

  • More elegance config
  • Test coverage (common & users 100%, article 0%)
  • ProtoBuf support
  • Code structure optimize (I think some place can use interface)
  • Continuous integration (done)

主要指标

概览
名称与所有者gothinkster/golang-gin-realworld-example-app
主编程语言Go
编程语言Go (语言数: 2)
平台BSD, Linux, Mac, Windows
许可证MIT License
所有者活动
创建于2017-10-02 18:30:41
推送于2024-01-05 04:06:57
最后一次提交2022-08-31 06:13:12
发布数5
最新版本名称0.0.6 (发布于 )
第一版名称0.0.1 (发布于 )
用户参与
星数2.6k
关注者数50
派生数505
提交数108
已启用问题?
问题数18
打开的问题数2
拉请求数6
打开的拉请求数7
关闭的拉请求数4
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?