How can Configuration be set for Desk Invoke API during local development?
- {
- url: `https://some.protected.url/`,
- headers: {
- "auth": "{{password}}"
- },
- type: "PUT"
- }
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