func getConfig()

in service/main.go [43:50]


func getConfig() Config {
	return Config{
		Bucket:      required("BUCKET"),
		Port:        optional("PORT", "3333"),
		RequireAuth: optional("REQUIRE_AUTH", "true") != "false",
		Profile:     optional("PROFILE", ""),
	}
}