1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 03:34:12 +00:00

beego: support other config provider

This commit is contained in:
astaxie 2014-05-25 22:37:38 +08:00
parent 23229ef9ef
commit a2a6f47afa

View File

@ -70,6 +70,7 @@ var (
AdminHttpPort int
FlashName string // name of the flash variable found in response header and cookie
FlashSeperator string // used to seperate flash key:value
AppConfigProvider string // config provider
)
func init() {
@ -91,6 +92,8 @@ func init() {
}
}
AppConfigProvider = "ini"
StaticDir = make(map[string]string)
StaticDir["/static"] = "static"
@ -170,7 +173,7 @@ func init() {
// ParseConfig parsed default config file.
// now only support ini, next will support json.
func ParseConfig() (err error) {
AppConfig, err = config.NewConfig("ini", AppConfigPath)
AppConfig, err = config.NewConfig(AppConfigProvider, AppConfigPath)
if err != nil {
AppConfig = config.NewFakeConfig()
return err