This tag is for questions related to the Go Viper package for reading configuration data from files and other sources.
I am trying to make Viper read my environment variables, but its not working. Here is my configuration: # app.yaml …
go viper-goIs it possible to load/merge multiple config files with Viper? Say I have a general config file containing configuration …
go viper-goI am developing an web app with Go. So far so good, but now I am integrating Wercker as a …
go tdd viper-goMy question: How do I write the code below to get a string from my nested yaml struct? Here is …
go viper viper-goFor a project I'm working on I'm trying to pass a map of stings as an environment variable using Viper. …
go viper-goHere below is my configuration file in toml format. [[hosts]] name = "host1" username = "user1" password = "password1" [[hosts]] name = "host2" username = "…
go viper-go