mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:10:54 +00:00
Add host env feature.
This commit is contained in:
parent
229d8b9530
commit
3504d2a4da
@ -134,10 +134,10 @@ func init() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
var filename = "app.conf"
|
var filename = "app.conf"
|
||||||
if os.Getenv("BEEGO_MODE") !=""{
|
if os.Getenv("BEEGO_MODE") != "" {
|
||||||
filename= os.Getenv("BEEGO_MODE")+".app.conf"
|
filename = os.Getenv("BEEGO_MODE") + ".app.conf"
|
||||||
}
|
}
|
||||||
appConfigPath = filepath.Join(workPath, "conf", filename)
|
appConfigPath = filepath.Join(workPath, "conf", filename)
|
||||||
if !utils.FileExists(appConfigPath) {
|
if !utils.FileExists(appConfigPath) {
|
||||||
appConfigPath = filepath.Join(AppPath, "conf", filename)
|
appConfigPath = filepath.Join(AppPath, "conf", filename)
|
||||||
|
Loading…
Reference in New Issue
Block a user