Configure forge application after deployment

Hello,
I’m developing an application that makes rest api calls to my own external system. I would like to configure so the user can set my system’s URL when installing the application and I don’t need to hardcode it into the manifest.yml file. That’s because I’m planning to set up different systems for each user.
Is there a way to do that?

Thanks!

Hi @bodrimark,

If you are referring to different domains per customer then the short answer is no - every external system you are going to communicate with should be defined in the manifest (check this doc for more information).
However, what you can explore is to register one domain that is consistent with all in the manifest but offer a different path per customer. As mentioned here, you do not need to list individual URLs as adding the domain is sufficient.

Cheers,
Ian

1 Like

Thank you for the answer!