1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 11:30:55 +00:00

Merge pull request #1603 from coseyo/remote_develop

fix conf load bug
This commit is contained in:
astaxie 2016-01-22 20:34:46 +08:00
commit af346e871b

View File

@ -180,9 +180,10 @@ func init() {
// now only support ini, next will support json.
func ParseConfig() (err error) {
if AppConfigPath == "" {
if utils.FileExists(filepath.Join("conf", "app.conf")) {
AppConfigPath = filepath.Join("conf", "app.conf")
} else {
// initialize default configurations
AppPath, _ := filepath.Abs(filepath.Dir(os.Args[0]))
AppConfigPath = filepath.Join(AppPath, "conf", "app.conf")
if !utils.FileExists(AppConfigPath) {
AppConfig = &beegoAppConfig{config.NewFakeConfig()}
return
}