config.go 1016 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package boots
  2. import (
  3. "fmt"
  4. "go-nc/configs/global"
  5. "go-nc/internal/utils"
  6. "os"
  7. "path/filepath"
  8. "github.com/fsnotify/fsnotify"
  9. "github.com/spf13/viper"
  10. )
  11. // 初始化配置
  12. func InitConfig() *viper.Viper {
  13. configYamlPath := filepath.Join(utils.GetProjectRoot(), "configs", "config.yaml")
  14. // 判断配置文件是否存在
  15. if _, err := os.Stat(configYamlPath); err != nil {
  16. configYamlPath = utils.GetExePath() + "/configs/config.yaml"
  17. }
  18. // 初始化viper
  19. v := viper.New()
  20. v.SetConfigFile(configYamlPath)
  21. v.SetConfigType("yaml")
  22. if err := v.ReadInConfig(); err != nil {
  23. panic(fmt.Errorf("配置文件读取失败: %s", err))
  24. }
  25. // 监听配置文件
  26. v.WatchConfig()
  27. v.OnConfigChange(func(in fsnotify.Event) {
  28. fmt.Println("配置文件已更改:", in.Name)
  29. // 重载配置
  30. if err := v.Unmarshal(&global.App.Config); err != nil {
  31. fmt.Println(err)
  32. }
  33. })
  34. // 将配置赋值给全局变量
  35. if err := v.Unmarshal(&global.App.Config); err != nil {
  36. fmt.Println(err)
  37. }
  38. return v
  39. }