1
0
mirror of https://github.com/astaxie/beego.git synced 2024-09-21 03:21:50 +00:00

Merge pull request #227 from sdjc/patch-4

Update config.go
This commit is contained in:
astaxie 2013-09-28 07:09:59 -07:00
commit 904b37032c

View File

@ -53,7 +53,7 @@ var (
func init() { func init() {
os.Chdir(path.Dir(os.Args[0])) os.Chdir(path.Dir(os.Args[0]))
BeeApp = NewApp() BeeApp = NewApp()
AppPath, _ = os.Getwd() AppPath = path.Dir(os.Args[0])
StaticDir = make(map[string]string) StaticDir = make(map[string]string)
TemplateCache = make(map[string]*template.Template) TemplateCache = make(map[string]*template.Template)
HttpAddr = "" HttpAddr = ""