mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
fix: Startup error (#11)
* fix: Startup error Fixed a path error that prompted that the configuration file could not be found at startup * Update config.go Co-authored-by: Gordon <46924906+FGadvancer@users.noreply.github.com>
This commit is contained in:
parent
65157ede23
commit
7c3aa7ee0b
@ -2,17 +2,15 @@ package config
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
|
||||||
|
"os"
|
||||||
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
|
||||||
_, b, _, _ = runtime.Caller(0)
|
|
||||||
// Root folder of this project
|
|
||||||
Root = filepath.Join(filepath.Dir(b), "../../..")
|
|
||||||
)
|
|
||||||
|
|
||||||
var Config config
|
var Config config
|
||||||
|
|
||||||
@ -156,9 +154,8 @@ type config struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
// if we cd Open-IM-Server/src/utils and run go test
|
path, _ := os.Getwd()
|
||||||
// it will panic cannot find config/config.yaml
|
bytes, err := ioutil.ReadFile(path + "/config/config.yaml")
|
||||||
bytes, err := ioutil.ReadFile(Root + "/config/config.yaml")
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user