mirror of
https://github.com/beego/bee.git
synced 2024-11-21 13:40:53 +00:00
Merge pull request #1 from DataSttructure/DataSttructure-patch-1
Update apiapp.go
This commit is contained in:
commit
c36f132fd8
@ -99,7 +99,11 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
orm.RegisterDataBase("default", "{{.DriverName}}", beego.AppConfig.String("sqlconn"))
|
||||
sqlConn,err := beego.AppConfig.String("sqlconn")
|
||||
if err != nil {
|
||||
beeLogger.Log.Fatal("%s", err)
|
||||
}
|
||||
orm.RegisterDataBase("default", "{{.DriverName}}", sqlConn)
|
||||
if beego.BConfig.RunMode == "dev" {
|
||||
beego.BConfig.WebConfig.DirectoryIndex = true
|
||||
beego.BConfig.WebConfig.StaticDir["/swagger"] = "swagger"
|
||||
|
Loading…
Reference in New Issue
Block a user