move config
This commit is contained in:
parent
32fcbb7ffe
commit
6b34be6508
@ -1,4 +1,4 @@
|
|||||||
package models
|
package conf
|
||||||
|
|
||||||
import "sync"
|
import "sync"
|
||||||
|
|
8
main.go
8
main.go
@ -1,7 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"oc-workflow/models"
|
"oc-workflow/conf"
|
||||||
_ "oc-workflow/routers"
|
_ "oc-workflow/routers"
|
||||||
|
|
||||||
"github.com/beego/beego/logs"
|
"github.com/beego/beego/logs"
|
||||||
@ -40,9 +40,9 @@ func main() {
|
|||||||
o = onion.New(l1, l3)
|
o = onion.New(l1, l3)
|
||||||
}
|
}
|
||||||
|
|
||||||
models.GetConfig().MongoUrl = o.GetStringDefault("mongourl", "http://localhost:4080")
|
conf.GetConfig().MongoUrl = o.GetStringDefault("mongourl", "http://localhost:4080")
|
||||||
models.GetConfig().MongoLogin = o.GetStringDefault("mongologin", "admin")
|
conf.GetConfig().MongoLogin = o.GetStringDefault("mongologin", "admin")
|
||||||
models.GetConfig().MongoPassword = o.GetStringDefault("mongopassword", "admin")
|
conf.GetConfig().MongoPassword = o.GetStringDefault("mongopassword", "admin")
|
||||||
|
|
||||||
// Normal beego init
|
// Normal beego init
|
||||||
//if beego.BConfig.RunMode == "dev" {
|
//if beego.BConfig.RunMode == "dev" {
|
||||||
|
@ -2,10 +2,11 @@ package models
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"oc-workflow/conf"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
c := GetConfig()
|
c := conf.GetConfig()
|
||||||
// configure storage
|
// configure storage
|
||||||
fmt.Println(c.MongoUrl)
|
fmt.Println(c.MongoUrl)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user