umbraco / Umbraco.Commerce.Deploy

MIT License
0 stars 3 forks source link

appSettings.json configuration path/location #5

Closed tormnator closed 1 year ago

tormnator commented 1 year ago

In Vendr I had the following in appSettings.json:

  "Vendr.Deploy": {
    "PaymentMethods": {
      "IgnoreSettings": [ "mode" ]
    }
  },

What is the corresponding setting with Umbraco.Commerce.Deploy? I can't find any references to this in the documentation or with a quick search at the Deploy source code. It's also not mentioned in the Vendr to Umbraco.Commerce migration guide.

mattbrailsford commented 1 year ago

It still exists, but yea, it has moved. You'll want to change your config to the following:

"Umbraco" : {
    "Commerce" : {
        "Deploy": {
            "PaymentMethods" : {
                "IgnoreSettings": [ "mode" ]
            }
        }
    }
}

Hope this helps

tormnator commented 1 year ago

Thanks, Matt!