mirror of
https://github.com/beego/bee.git
synced 2024-11-21 08:30:54 +00:00
Update apiapp.go
Add error handling for beego.AppConfig.String("sqlconn") in line 102
This commit is contained in:
parent
bdeabd3b70
commit
e22201eae3
@ -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