@@ -48,33 +48,26 @@ var rootCmd = &cobra.Command{
48
48
Short : "A CLI for PlanetScale" ,
49
49
Long : `pscale is a CLI library for communicating with PlanetScale's API.` ,
50
50
TraverseChildren : true ,
51
- // Uncomment the following line if your bare application
52
- // has an action associated with it:
53
- // Run: func(cmd *cobra.Command, args []string) { },
54
51
}
55
52
56
53
// Execute adds all child commands to the root command and sets flags appropriately.
57
54
// This is called by main.main(). It only needs to happen once to the rootCmd.
58
55
func Execute (ver , commit , buildDate string ) error {
59
56
cobra .OnInitialize (initConfig )
60
57
61
- // Here you will define your flags and configuration settings.
62
- // Cobra supports persistent flags, which, if defined here,
63
- // will be global for your application.
64
-
65
- rootCmd .PersistentFlags ().StringVar (& cfgFile , "config" , "" , "config file (default is $HOME/.config/planetscale/config.yaml)" )
66
-
58
+ rootCmd .PersistentFlags ().StringVar (& cfgFile , "config" ,
59
+ "" , "Config file (default is $HOME/.config/planetscale/pscale.yml)" )
67
60
rootCmd .SilenceUsage = true
68
- // Cobra also supports local flags, which will only run
69
- // when this action is called directly.
70
- rootCmd .Flags ().BoolP ("toggle" , "t" , false , "Help message for toggle" )
71
61
72
62
v := version .Format (ver , commit , buildDate )
73
63
rootCmd .SetVersionTemplate (v )
74
64
rootCmd .Version = v
75
65
rootCmd .Flags ().Bool ("version" , false , "Show pscale version" )
76
66
77
- cfg := config .New ()
67
+ cfg , err := config .New ()
68
+ if err != nil {
69
+ return err
70
+ }
78
71
79
72
rootCmd .PersistentFlags ().StringVar (& cfg .BaseURL ,
80
73
"api-url" , ps .DefaultBaseURL , "The base URL for the PlanetScale API." )
@@ -130,20 +123,23 @@ func initConfig() {
130
123
// Use config file from the flag.
131
124
viper .SetConfigFile (cfgFile )
132
125
} else {
126
+ defaultConfigDir , err := config .ConfigDir ()
127
+ if err != nil {
128
+ fmt .Println (err )
129
+ os .Exit (1 )
130
+ }
131
+
133
132
// Order of preference for configuration files:
134
- // (1) $PWD/.planetscale
135
- // (2) $HOME/config/planetscale
136
- viper .AddConfigPath (".planetscale" )
137
- viper .AddConfigPath (config .ConfigDir ())
138
- viper .SetConfigName ("config" )
139
- viper .SetConfigType ("yaml" )
133
+ // (1) $HOME/.config/planetscale
134
+ viper .AddConfigPath (defaultConfigDir )
135
+ viper .SetConfigName ("pscale" )
136
+ viper .SetConfigType ("yml" )
140
137
}
141
138
142
139
viper .SetEnvPrefix ("planetscale" )
143
140
viper .AutomaticEnv () // read in environment variables that match
144
141
145
142
// If a config file is found, read it in.
146
-
147
143
if err := viper .ReadInConfig (); err != nil {
148
144
if _ , ok := err .(viper.ConfigFileNotFoundError ); ! ok {
149
145
// Only handle errors when it's something unrelated to the config file not
@@ -155,9 +151,9 @@ func initConfig() {
155
151
156
152
// Check for a project-local configuration file to merge in if the user
157
153
// has not specified a config file
158
- if rootDir , err := config .GetRootGitRepoDir (); err == nil && cfgFile == "" {
154
+ if rootDir , err := config .RootGitRepoDir (); err == nil && cfgFile == "" {
159
155
viper .AddConfigPath (rootDir )
160
- viper .SetConfigName (config .GetProjectConfigFile ())
156
+ viper .SetConfigName (config .ProjectConfigFile ())
161
157
viper .MergeInConfig () // nolint:errcheck
162
158
}
163
159
0 commit comments