bench-forgejo/modules/base/conf.go

47 lines
859 B
Go
Raw Normal View History

2014-02-13 01:24:09 +05:30
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-03-08 03:52:15 +05:30
package base
2014-02-13 01:24:09 +05:30
import (
"fmt"
"os"
2014-02-19 15:20:53 +05:30
"os/exec"
"path"
"path/filepath"
2014-02-13 01:24:09 +05:30
"github.com/Unknwon/goconfig"
)
var Cfg *goconfig.ConfigFile
2014-02-19 15:20:53 +05:30
func exeDir() (string, error) {
file, err := exec.LookPath(os.Args[0])
if err != nil {
return "", err
}
p, err := filepath.Abs(file)
if err != nil {
return "", err
}
return path.Dir(p), nil
}
2014-02-13 01:24:09 +05:30
func init() {
var err error
2014-02-19 15:20:53 +05:30
workDir, err := exeDir()
if err != nil {
fmt.Printf("Fail to get work directory: %s\n", err)
os.Exit(2)
}
cfgPath := filepath.Join(workDir, "conf", "app.ini")
Cfg, err = goconfig.LoadConfigFile(cfgPath)
2014-02-13 01:24:09 +05:30
if err != nil {
2014-02-19 15:20:53 +05:30
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
2014-02-13 01:24:09 +05:30
os.Exit(2)
}
Cfg.BlockMode = false
}