How can Configuration be set for Desk Invoke API during local development?

How can Configuration be set for Desk Invoke API during local development?


  1. {
  2.         url: `https://some.protected.url/`,
  3.         headers: {
  4.             "auth": "{{password}}"
  5.         },
  6.         type: "PUT"
  7. }
I am sending this request using ZOHODESK.request() and it successfully replaces the {{password}} when running in prod mode and the installation is configured.

However i can't see a way to define those config parameters during local development with runDevMode() is there a yaml file that can be created to configure the local version?

Otherwise I have to hardcode passwords and remove them before every single deployment which is pretty bad.

Thanks in Advance,
Ivan Krastev