[#626] Support default config file

Signed-off-by: Tivizi Jing <tivizi@163.com>
remotes/fyrchik/meta-pebble
tivizi 2021-06-24 20:31:50 +08:00 committed by Alex Vanin
parent 48827f42d3
commit 2da5a309f7
1 changed files with 6 additions and 3 deletions

View File

@ -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)