mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Exit if specified config file is not present
This commit is contained in:
parent
f45045d1c0
commit
2d0539300d
1 changed files with 5 additions and 2 deletions
|
@ -88,15 +88,18 @@ func InitConfig(cfgFile string) {
|
||||||
if cfgFile != "" {
|
if cfgFile != "" {
|
||||||
// Use config file from the flag.
|
// Use config file from the flag.
|
||||||
viper.SetConfigFile(cfgFile)
|
viper.SetConfigFile(cfgFile)
|
||||||
|
if err := viper.ReadInConfig(); err != nil {
|
||||||
|
fmt.Println("Navidrome could not open config file: ", err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// Search config in local directory with name "navidrome" (without extension).
|
// Search config in local directory with name "navidrome" (without extension).
|
||||||
viper.AddConfigPath(".")
|
viper.AddConfigPath(".")
|
||||||
viper.SetConfigName("navidrome")
|
viper.SetConfigName("navidrome")
|
||||||
|
_ = viper.ReadInConfig()
|
||||||
}
|
}
|
||||||
|
|
||||||
_ = viper.BindEnv("port")
|
_ = viper.BindEnv("port")
|
||||||
viper.SetEnvPrefix("ND")
|
viper.SetEnvPrefix("ND")
|
||||||
viper.AutomaticEnv()
|
viper.AutomaticEnv()
|
||||||
|
|
||||||
_ = viper.ReadInConfig()
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue