mirror of
https://github.com/beego/bee.git
synced 2024-11-01 05:00:55 +00:00
19 lines
347 B
Go
19 lines
347 B
Go
package beegopro
|
|
|
|
const BeegoToml = `
|
|
dsn = "root:123456@tcp(127.0.0.1:3306)/beego"
|
|
driver = "mysql"
|
|
proType = "default"
|
|
enableModule = []
|
|
apiPrefix = "/"
|
|
gitRemotePath = "https://github.com/beego-dev/beego-pro.git"
|
|
format = true
|
|
sourceGen = "text"
|
|
gitPull = true
|
|
[models.user]
|
|
name = ["uid"]
|
|
orm = ["auto"]
|
|
comment = ["Uid"]
|
|
|
|
`
|