beego常用命令

下载beego

go get -u github.com/astaxie/beego
go get github.com/beego/bee

标题创建项目

bee api demo_name -conn=“root:root@tcp(127.0.0.1:12581)/custom_table”

标题生成代码

bee generate appcode -driver=mysql -conn=“root:root@tcp(127.0.0.1:12581)/custom_table”

标题生成文档

bee run -gendoc=true -downdoc=true

你可能感兴趣的:(Go)