From c80885a2ef7666b274fe45b2e4de8592633f4f18 Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Sun, 27 Sep 2020 21:46:33 +0200 Subject: [PATCH] Config needs to end with .yml --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8418427..23c8760 100644 --- a/main.go +++ b/main.go @@ -23,7 +23,7 @@ func loadConfiguration() { viper.AutomaticEnv() // Load configuration file if exists - viper.SetConfigName("ghostream") + viper.SetConfigName("ghostream.yml") viper.SetConfigType("yaml") viper.AddConfigPath("$HOME/.ghostream") viper.AddConfigPath("/etc/ghostream")