Ios debug build question

I have an app that I want to use remote debugging on for the ios build and as such, I assume I need to build it as release=debug. I changed the voltbuilder.json to do that but aftr I uploaded the zip I got this message
UserError: iOS Development mobileprovision not found. Put it in your certificates folder.
I can’t find an example of how to set up the voltbuilder.json to do an ios debug buid

In your voltbuilder.json file, do you have a line like this?

"iosDevelopment": "certificates/development.mobileprovision",

If not, you need to supply one, along with these two:

    "iosDevP12": "certificates/ios_development.p12",
    "iosDevP12Password": "mypassword",

There is more documentation here.