I have val config = Play.current.configuration and I want to get a Map[String, String] of all current configs key and their string values. How can I do that?
val config = Play.current.configuration
Map[String, String]
config.entrySet.toMap.mapValues(_.render)