bee icon indicating copy to clipboard operation
bee copied to clipboard

Bee is a tool for helping develop with beego app framework.

Results 117 bee issues
Sort by recently updated
recently updated
newest added

https://studygolang.com/topics/5758#reply2

现在只支持object和array,其他类型只返回了描述,可以加入string,int 等普通类型,在文档里也注明了 ```go //g_docs.go:577 } else { respType = strings.Trim(respType, "{}") rs.Schema = &swagger.Schema{ Type: respType, } rs.Description = strings.TrimSpace(ss[pos:]) } ``` 目前自己改了一行代码实现了

API自动化文档模块,通过@Param body package1.package2.struct 声明后,生成的swagger.yml中,ref正常生成,但是文档末尾的definitions中没有定义的struct结构体。

Hello Devs, Is there any plan to support openapi 3.0 spec? [](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md) [](https://swagger.io/blog/news/announcing-openapi-3-0/)

## The error ``` godep: No Godeps found (or in any parent directory) The command '/bin/sh -c cd $APP_DIR && CGO_ENABLED=0 godep go build -ldflags '-d -w -s'' returned a...

### go struct ```go type User struct { Id int Name string } type Info struct { InfoId int Title string User *User `orm:"rel(one)"` } ``` ------------------------------------------------------- ## db tables...

Output an error when i use "bee run" `/usr/local/go/pkg/tool/darwin_amd64/compile: pipe: too many open files` `panic: runtime error: index out of range goroutine 1 [running]: github.com/beego/bee/utils.MacOSVersionSupport(0x0) /Users/gump/gopath/src/github.com/beego/bee/utils/notification.go:79 +0x153 github.com/beego/bee/utils.osxNotify(0x0, 0x0, 0x4687f56,...

the best way use swagger-ui is diy so i suggest your team move swaggerlink [docs.go] to command options

## Details: I tried to pack the projects by **bee pack** command.The package was generated successfully.But the mondification date of files in the package was incorrected which not matched the...

type Repworkorders struct { Id int `orm:"column(id);auto"` Message string `orm:"column(message);size(255);null"` } When I use the `bee api` to create the framework, I want map `UID` to the column `id`. How...