blob: 61654587266a57658f57f0058e9e0a7ca4b21c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
package cli
import (
"fmt"
"os"
"github.com/spf13/viper"
)
// InitConfig initializes viper configuration
func InitConfig(cfgFile string) {
if cfgFile != "" {
// Use config file from the flag
viper.SetConfigFile(cfgFile)
} else {
// Find home directory
home, err := os.UserHomeDir()
if err != nil {
fmt.Fprintf(os.Stderr, "Error getting home directory: %v\n", err)
return
}
// Search config in home directory with name ".totalrecall" (without extension)
viper.AddConfigPath(home)
viper.AddConfigPath(".")
viper.SetConfigType("yaml")
viper.SetConfigName(".totalrecall")
}
// Environment variables
viper.SetEnvPrefix("TOTALRECALL")
viper.AutomaticEnv()
// Read config file
if err := viper.ReadInConfig(); err == nil {
fmt.Fprintln(os.Stderr, "Using config file:", viper.ConfigFileUsed())
}
}
|