forked from TrueCloudLab/frostfs-node
[#626] Support default config file
Signed-off-by: Tivizi Jing <tivizi@163.com>
This commit is contained in:
parent
48827f42d3
commit
2da5a309f7
1 changed files with 6 additions and 3 deletions
|
@ -7,6 +7,7 @@ import (
|
|||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
|
||||
"github.com/mitchellh/go-homedir"
|
||||
|
@ -141,9 +142,11 @@ func initConfig() {
|
|||
os.Exit(1)
|
||||
}
|
||||
|
||||
// Search config in home directory with name ".main" (without extension).
|
||||
viper.AddConfigPath(home)
|
||||
viper.SetConfigName(".config/neofs-cli")
|
||||
// Search config in `$HOME/.config/neofs-cli/` or `$PWD` with name "config.yaml"
|
||||
viper.AddConfigPath(filepath.Join(home, ".config", "neofs-cli"))
|
||||
viper.AddConfigPath(".")
|
||||
viper.SetConfigName("config")
|
||||
viper.SetConfigType("yaml")
|
||||
}
|
||||
|
||||
viper.SetEnvPrefix(envPrefix)
|
||||
|
|
Loading…
Reference in a new issue